Skip to content

Commit

Permalink
Merge pull request #544 from jhawthorn/gemspec-ls-files
Browse files Browse the repository at this point in the history
Use git ls-files for the gemspec file listing
  • Loading branch information
cbrunsdon committed Nov 30, 2015
2 parents b8f2f5b + 0b6d2bb commit 5fb9d38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/solidus_backend.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'http:https://solidus.io'
s.rubyforge_project = 'solidus_backend'

s.files = Dir['LICENSE', 'README.md', 'app/**/*', 'config/**/*', 'lib/**/*', 'db/**/*', 'vendor/**/*']
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'

Expand Down
2 changes: 1 addition & 1 deletion core/solidus_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'http:https://solidus.io'
s.license = %q{BSD-3}

s.files = Dir['LICENSE', 'README.md', 'app/**/*', 'config/**/*', 'lib/**/*', 'db/**/*', 'vendor/**/*']
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'

s.required_ruby_version = '>= 2.1.0'
Expand Down
2 changes: 1 addition & 1 deletion frontend/solidus_frontend.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'http:https://solidus.io/'
s.rubyforge_project = 'solidus_frontend'

s.files = Dir['LICENSE', 'README.md', 'app/**/*', 'config/**/*', 'lib/**/*', 'db/**/*', 'vendor/**/*']
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'

Expand Down
2 changes: 1 addition & 1 deletion sample/solidus_sample.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'http:https://solidus.io/'
s.license = %q{BSD-3}

s.files = Dir['LICENSE', 'README.md', 'lib/**/*', 'db/**/*']
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'

Expand Down

0 comments on commit 5fb9d38

Please sign in to comment.