Skip to content

Commit

Permalink
Specify Ruby files specifically for gemspec
Browse files Browse the repository at this point in the history
Because Thermite tends to put the built library in the lib directory we need
to avoid including it in the gem itself.
  • Loading branch information
danielpclark committed Mar 7, 2018
1 parent 36709ca commit cbd092a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions faster_path.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ Gem::Specification.new do |spec|
spec.license = 'MIT OR Apache-2.0'

spec.files = [
'Cargo.lock', 'Cargo.toml', 'Gemfile',
'MIT-LICENSE.txt', 'README.md', 'Rakefile', 'bin/console', 'bin/setup',
'ext/Rakefile', 'faster_path.gemspec'
'Cargo.lock', 'Cargo.toml', 'Gemfile', 'MIT-LICENSE.txt', 'README.md', 'Rakefile',
'bin/console', 'bin/setup', 'ext/Rakefile', 'faster_path.gemspec', 'lib/faster_path.rb',
'lib/faster_path/version.rb', 'lib/faster_path/thermite_initialize.rb',
'lib/faster_path/optional/monkeypatches.rb', 'lib/faster_path/optional/refinements.rb'
]
spec.files += Dir['lib/**/*']
spec.files += Dir['src/**/*']

spec.extensions = ['ext/Rakefile']
Expand Down
2 changes: 1 addition & 1 deletion lib/faster_path/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FasterPath
VERSION = "0.3.6"
VERSION = "0.3.7"
end

0 comments on commit cbd092a

Please sign in to comment.