Skip to content

Commit

Permalink
chore: some fix at gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
dvinciguerra committed Aug 22, 2024
1 parent 4756ea2 commit fffd003
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions importmap-cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Gem::Specification.new do |spec|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

# Uncomment to register a new dependency of your gem
Expand Down

0 comments on commit fffd003

Please sign in to comment.