We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5254a3 commit 6c2d240Copy full SHA for 6c2d240
irb.gemspec
@@ -22,19 +22,12 @@ Gem::Specification.new do |spec|
22
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
23
24
spec.files = [
25
+ ".rdoc_options",
26
"Gemfile",
- "LICENSE.txt",
27
- "README.md",
28
- "Rakefile",
29
- "bin/console",
30
- "bin/setup",
31
- "doc/irb/irb-tools.rd.ja",
32
- "doc/irb/irb.rd.ja",
33
"exe/irb",
34
- "irb.gemspec",
35
"man/irb.1",
36
] + Dir.chdir(File.expand_path('..', __FILE__)) do
37
- Dir.glob("lib/**/*").map {|f| f unless File.directory?(f) }.compact
+ Dir.glob(%w[*.txt *.md bin/* doc/**/* lib/**/*]).select {|f| !File.directory?(f) }
38
end
39
spec.bindir = "exe"
40
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
0 commit comments