Skip to content

Commit

Permalink
Use correct SPDX ID for license in gemspec
Browse files Browse the repository at this point in the history
Previously we were using "BSD-3", but the correct SPDX ID is
"BSD-3-CLAUSE". This fixes a warning rubygems emits when building gems.

http:https://spdx.org/licenses/
http:https://spdx.org/licenses/BSD-3-Clause.html
  • Loading branch information
jhawthorn committed Sep 14, 2016
1 parent d7b7ef4 commit f95c2a2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 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 = '[email protected]'
gem.homepage = 'http:https://solidus.io/'
gem.license = 'BSD-3-Clause'

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

s.files = `git ls-files`.split("\n")
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 = '[email protected]'
s.homepage = 'http:https://solidus.io'
s.license = 'BSD-3'
s.license = 'BSD-3-Clause'

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

s.files = `git ls-files`.split("\n")
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 = '[email protected]'
s.homepage = 'http:https://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 = '[email protected]'
s.homepage = 'http:https://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 f95c2a2

Please sign in to comment.