Skip to content

Commit

Permalink
Merge pull request #1444 from jhawthorn/gemspec-licensing
Browse files Browse the repository at this point in the history
Use correct SPDX ID for license in gemspec
  • Loading branch information
jhawthorn authored Sep 15, 2016
2 parents 40cb7fd + 96bbb0c commit d71375c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions api/solidus_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Gem::Specification.new do |gem|
gem.author = 'Solidus Team'
gem.email = 'contact@solidus.io'
gem.homepage = 'http://solidus.io/'
gem.license = 'BSD-3-Clause'

gem.summary = 'REST API for the Solidus e-commerce framework.'
gem.description = gem.summary
Expand Down
2 changes: 1 addition & 1 deletion backend/solidus_backend.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.author = 'Solidus Team'
s.email = 'contact@solidus.io'
s.homepage = 'http://solidus.io'
s.rubyforge_project = 'solidus_backend'
s.license = 'BSD-3-Clause'

s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion core/solidus_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.author = 'Solidus Team'
s.email = 'contact@solidus.io'
s.homepage = 'http://solidus.io'
s.license = 'BSD-3'
s.license = 'BSD-3-Clause'

s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion frontend/solidus_frontend.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.author = 'Solidus Team'
s.email = 'contact@solidus.io'
s.homepage = 'http://solidus.io/'
s.rubyforge_project = 'solidus_frontend'
s.license = 'BSD-3-Clause'

s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion sample/solidus_sample.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.author = 'Solidus Team'
s.email = 'contact@solidus.io'
s.homepage = 'http://solidus.io/'
s.license = 'BSD-3'
s.license = 'BSD-3-Clause'

s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion solidus.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.author = 'Solidus Team'
s.email = 'contact@solidus.io'
s.homepage = 'http://solidus.io'
s.license = 'BSD-3'
s.license = 'BSD-3-Clause'

s.add_dependency 'solidus_core', s.version
s.add_dependency 'solidus_api', s.version
Expand Down

0 comments on commit d71375c

Please sign in to comment.