Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Jan 28, 2025
1 parent b37c1c2 commit 4a149f8
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions irb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,21 @@ Gem::Specification.new do |spec|
spec.metadata["documentation_uri"] = "https://ruby.github.io/irb/"
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"

spec.files = [
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"bin/console",
"bin/setup",
"doc/irb/irb-tools.rd.ja",
"doc/irb/irb.rd.ja",
"exe/irb",
"irb.gemspec",
"man/irb.1",
] + Dir.chdir(File.expand_path('..', __FILE__)) { Dir.glob("lib/**/*") }
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
[
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"bin/console",
"bin/setup",
"doc/irb/irb-tools.rd.ja",
"doc/irb/irb.rd.ja",
"exe/irb",
"irb.gemspec",
"man/irb.1",
] + Dir.glob("lib/**/*")
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
Expand Down

0 comments on commit 4a149f8

Please sign in to comment.