Skip to content

Commit

Permalink
Fix Gemspecs for build
Browse files Browse the repository at this point in the history
  • Loading branch information
jayzes committed Oct 4, 2023
1 parent 5ea62c7 commit 8011aae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion activerecord/activerecord.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."

# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob("{lib}/**/*.*") + %w[README.md]
spec.files = Dir.glob("{lib}/**/*.*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion datadog/datadog.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."

# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob("{lib}/**/*.*") + %w[README.md]
spec.files = Dir.glob("{lib}/**/*.*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion sentry/sentry.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."

# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob("{lib}/**/*.*") + %w[README.md]
spec.files = Dir.glob("{lib}/**/*.*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
Expand Down

0 comments on commit 8011aae

Please sign in to comment.