We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37c1c2 commit f4439b4Copy full SHA for f4439b4
irb.gemspec
@@ -33,7 +33,9 @@ Gem::Specification.new do |spec|
33
"exe/irb",
34
"irb.gemspec",
35
"man/irb.1",
36
- ] + Dir.chdir(File.expand_path('..', __FILE__)) { Dir.glob("lib/**/*") }
+ ] + Dir.chdir(File.expand_path('..', __FILE__)) do
37
+ Dir.glob("lib/**/*").map {|f| f unless File.directory?(f) }.compact
38
+ end
39
spec.bindir = "exe"
40
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
41
spec.require_paths = ["lib"]
0 commit comments