spdx 1.2.4 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9430cf67fbc16303c3d29e0e477cdf273c03f555
4
- data.tar.gz: ca766f230f988f88e3e614dd825203d040f17ac2
3
+ metadata.gz: dc0625d1edac3842eb130c457bf7566b5f71c9ad
4
+ data.tar.gz: af25de16dbe8745114b1ec9c0070b343d173abb1
5
5
  SHA512:
6
- metadata.gz: 58049c4f725c1a1e6149501a445453cfe2d1277c60231188fecb6a50df5c66a173613976d103d9c42640127a9046ea3e7e72f9a3f726c1e57118d82eb27e1c5c
7
- data.tar.gz: c23073c225b3fbc1e4275d99eafdc8e21f7370ec734668a362abe14fe774a47af6b742b7f544330867d8036bdcd233914b20047aa1c33aab4cc7d40ba10feec0
6
+ metadata.gz: 064cbf6755b8a2261f64b2faa5431d9892c80c12f713cbf375440c17887191d9515d20a37baa11b6c2f19eefd1700988d0c2bf9bd1b0eeb371cce8e769fe87f5
7
+ data.tar.gz: 8a388f33aa8a06413344dc23abcea84548749da4d54d771230745c3908dd877323a14d1efb4880b25a59c7b677da74c43e982114b031fce1d92d054954fd52f9
@@ -64,7 +64,6 @@ module Spdx
64
64
  'gpl v3' => 'GPL-3.0',
65
65
  'gpl v2' => 'GPL-2.0',
66
66
  'gpl 3.0' => 'GPL-3.0',
67
- 'gplv3' => 'GPL-3.0',
68
67
  'gpl 2.0' => 'GPL-2.0',
69
68
  'gpl-3' => 'GPL-3.0',
70
69
  'gpl-2' => 'GPL-2.0',
@@ -141,7 +140,11 @@ module Spdx
141
140
  'epl' => 'EPL-1.0',
142
141
  'mit-license' => 'MIT',
143
142
  'iscl' => 'ISC',
144
- 'wtf' => 'WTFPL'
143
+ 'wtf' => 'WTFPL',
144
+ '2-clause bsdl' => 'BSD-2-clause',
145
+ '3-clause bsdl' => 'BSD-3-clause',
146
+ '2-clause bsd' => 'BSD-2-clause',
147
+ '3-clause bsd' => 'BSD-3-clause'
145
148
  }
146
149
  end
147
150
 
@@ -1,3 +1,3 @@
1
1
  module Spdx
2
- VERSION = "1.2.4"
2
+ VERSION = "1.2.5"
3
3
  end
@@ -68,7 +68,6 @@ describe Spdx do
68
68
  expect(Spdx.find('GPL').name).to eq('GNU General Public License v2.0 or later')
69
69
  expect(Spdx.find('GNU LESSER GENERAL PUBLIC LICENSE').name).to eq('GNU Lesser General Public License v2.1 or later')
70
70
  expect(Spdx.find('New BSD License').name).to eq('BSD 3-clause "New" or "Revised" License')
71
-
72
71
  end
73
72
  end
74
73
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spdx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt