Skip to content

Commit

Permalink
Remove dev files from gem build
Browse files Browse the repository at this point in the history
This gem has no executables. We only need to include the files needed
for runtime into the final gem build.

Closes AlchemyCMS#22
  • Loading branch information
tvdeyen committed Sep 5, 2018
1 parent 2899295 commit 9091941
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions alchemy-solidus.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ Gem::Specification.new do |gem|
gem.summary = %q{The World's Most Flexible E-Commerce Platform meets The World's Most Flexible Content Management System!}
gem.homepage = "https://github.com/AlchemyCMS/alchemy-solidus"
gem.license = 'BSD New'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
gem.test_files = Dir["spec/**/*"]
gem.name = "alchemy-solidus"
gem.require_paths = ["lib"]
gem.version = Alchemy::Solidus::VERSION
Expand Down

0 comments on commit 9091941

Please sign in to comment.