licensee 9.9.1 → 9.9.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 930a96d1bd7ed3b84fa727cf70d71740a5471500fdbdc3f5736f54eafd67e8e6
4
- data.tar.gz: af48a6336b6de9b1f97d344bfcff49dedb4169e31000a3a981ffbc43aa514cc3
3
+ metadata.gz: cb4651c6f3bae8fae051ec33b3517ebb09191402f8e7e5d1b0fd949a85b71393
4
+ data.tar.gz: 6fd1952939f6c0940fb0c132092b7b025803f76cb3789450ddabd53883dd0a88
5
5
  SHA512:
6
- metadata.gz: f4f2e0f847843640551f0ac5369b13880a06326cfd262c8909a176722828ad0435f9ff803aaf4223550462d36d21f9535f4cf2bc9e23f299ec6d62454788c157
7
- data.tar.gz: f13add2cdd94ae3e02b0a55cb445d8c2e1b4907eea902860fee3a7508abd9f979da2dba73caddd56a468d724b36251cea7565e73b015fcb4ad5db3a629f24c90
6
+ metadata.gz: 36016536deeadbd74cb8078622b4e89c8b744f139661076252a62d3543d9e70c8b84df70cfe0cff340b75f17d92e174b21cbd7e2eef1c8a7ae95219fb41b33e1
7
+ data.tar.gz: c67c0456e2477d69e7fad5a753c789bf5cdfc426bb7eec3dfda23cf23dce311906e47cc00b2ce3b1af1772e85be3f1d147fdc19426be6e968111b497578efe51
@@ -1,7 +1,6 @@
1
1
  require_relative 'licensee/version'
2
2
  require 'forwardable'
3
3
  require 'pathname'
4
- require 'rugged'
5
4
  require 'yaml'
6
5
 
7
6
  module Licensee
@@ -21,12 +21,12 @@ class LicenseeCLI < Thor
21
21
 
22
22
  rows = []
23
23
  rows << if project.license
24
- ['License:', project.license.spdx_id]
25
- elsif !project.licenses.empty?
26
- ['Licenses:', project.licenses.map(&:spdx_id)]
27
- else
28
- ['License:', set_color('None', :red)]
29
- end
24
+ ['License:', project.license.spdx_id]
25
+ elsif !project.licenses.empty?
26
+ ['Licenses:', project.licenses.map(&:spdx_id)]
27
+ else
28
+ ['License:', set_color('None', :red)]
29
+ end
30
30
 
31
31
  unless project.matched_files.empty?
32
32
  rows << ['Matched files:', project.matched_files.map(&:filename).join(', ')]
@@ -51,7 +51,7 @@ class LicenseeCLI < Thor
51
51
 
52
52
  licenses = licenses_by_similiarity(matched_file)
53
53
  next if licenses.empty?
54
- say ' Closest licenses:'
54
+ say ' Closest non-matching licenses:'
55
55
  rows = licenses[0...3].map do |license, similarity|
56
56
  spdx_id = license.meta['spdx-id']
57
57
  percent = Licensee::ContentHelper.format_percent(similarity)
@@ -13,6 +13,8 @@ module Licensee
13
13
  VERSION_REGEX = /\Aversion.*$/i
14
14
  MARKUP_REGEX = /[#_*=~\[\]()`|>]+/
15
15
  DEVELOPED_BY_REGEX = /\Adeveloped by:.*?\n\n/im
16
+ QUOTE_BEGIN_REGEX = /[`'"‘“]/
17
+ QUOTE_END_REGEX = /['"’”]/
16
18
 
17
19
  # A set of each word in the license, without duplicates
18
20
  def wordset
@@ -80,9 +82,10 @@ module Licensee
80
82
  string = strip_all_rights_reserved(string)
81
83
  string = strip_developed_by(string)
82
84
  string, _partition, _instructions = string.partition(END_OF_TERMS_REGEX)
83
- string = strip_markup(string)
85
+ string = normalize_lists(string)
84
86
  string = normalize_quotes(string)
85
87
  string = normalize_https(string)
88
+ string = strip_markup(string)
86
89
  strip_whitespace(string)
87
90
  end
88
91
 
@@ -173,15 +176,20 @@ module Licensee
173
176
  string.gsub(regex, ' ').squeeze(' ').strip
174
177
  end
175
178
 
176
- # Replace all single quotes with double quotes
179
+ # Replace all enclosing quotes with double quotes
177
180
  # Single versus double quotes don't alter the meaning, and it's easier to
178
181
  # strip double quotes if we still want to allow possessives
179
182
  def normalize_quotes(string)
180
- string.gsub(/\s'([\w -]*?\w)'/, ' "\1"')
183
+ string.gsub(/#{QUOTE_BEGIN_REGEX}+([\w -]*?\w)#{QUOTE_END_REGEX}+/,
184
+ '"\1"')
181
185
  end
182
186
 
183
187
  def normalize_https(string)
184
188
  string.gsub(/http:/, 'https:')
185
189
  end
190
+
191
+ def normalize_lists(string)
192
+ string.gsub(/^\s*(\d\.|\*)/, '-')
193
+ end
186
194
  end
187
195
  end
@@ -125,7 +125,7 @@ module Licensee
125
125
 
126
126
  # Returns the human-readable license name
127
127
  def name
128
- title ? title : key.capitalize
128
+ title || spdx_id
129
129
  end
130
130
 
131
131
  def name_without_version
@@ -8,7 +8,7 @@ module Licensee
8
8
  PREFERRED_EXT_REGEX = /\.#{Regexp.union(PREFERRED_EXT)}\z/
9
9
 
10
10
  # Regex to match any extension except .spdx or .header
11
- OTHER_EXT_REGEX = %r{\.(?!spdx|header)[^./]+\z}i
11
+ OTHER_EXT_REGEX = %r{\.(?!spdx|header|gemspec)[^./]+\z}i
12
12
 
13
13
  # Regex to match, LICENSE, LICENCE, unlicense, etc.
14
14
  LICENSE_REGEX = /(un)?licen[sc]e/i
@@ -5,6 +5,9 @@
5
5
  # Project files for this project type will contain the following keys:
6
6
  # :name - the file's path relative to the repo root
7
7
  # :oid - the file's OID
8
+
9
+ autoload :Rugged, 'rugged'
10
+
8
11
  module Licensee
9
12
  module Projects
10
13
  class GitProject < Licensee::Projects::Project
@@ -1,3 +1,3 @@
1
1
  module Licensee
2
- VERSION = '9.9.1'.freeze
2
+ VERSION = '9.9.2'.freeze
3
3
  end
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2018, Ben Balter
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ * Neither the name of the copyright holder nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2018, Ben Balter
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the name of the copyright holder nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -98,7 +98,7 @@
98
98
  },
99
99
  {
100
100
  "filename": "licensee.gemspec",
101
- "content": "require File.expand_path('lib/licensee/version', __dir__)\n\nGem::Specification.new do |gem|\n gem.name = 'licensee'\n gem.version = Licensee::VERSION\n\n gem.summary = 'A Ruby Gem to detect open source project licenses'\n gem.description = <<-DESC\n Licensee automates the process of reading LICENSE files and\n compares their contents to known licenses using a fancy maths.\n DESC\n\n gem.authors = ['Ben Balter']\n gem.email = 'ben.balter@github.com'\n gem.homepage = 'https://github.com/benbalter/licensee'\n gem.license = 'MIT'\n\n gem.bindir = 'bin'\n gem.executables << 'licensee'\n\n gem.add_dependency('dotenv', '~> 2.0')\n gem.add_dependency('octokit', '~> 4.8.0')\n gem.add_dependency('rugged', '~> 0.24')\n gem.add_dependency('thor', '~> 0.19')\n\n gem.add_development_dependency('coveralls', '~> 0.8')\n gem.add_development_dependency('mustache', '>= 0.9', '< 2.0')\n gem.add_development_dependency('pry', '~> 0.9')\n gem.add_development_dependency('rake', '~> 10.3')\n gem.add_development_dependency('rspec', '~> 3.5')\n gem.add_development_dependency('rubocop', '~> 0.49')\n gem.add_development_dependency('webmock', '~> 3.1')\n\n gem.required_ruby_version = '>= 2.1'\n\n # ensure the gem is built out of versioned files\n gem.files = Dir[\n 'Rakefile',\n '{bin,lib,man,test,vendor,spec}/**/*',\n 'README*', 'LICENSE*'\n ] & `git ls-files -z`.split(\"\\0\")\nend\n",
101
+ "content": "require File.expand_path('lib/licensee/version', __dir__)\n\nGem::Specification.new do |gem|\n gem.name = 'licensee'\n gem.version = Licensee::VERSION\n\n gem.summary = 'A Ruby Gem to detect open source project licenses'\n gem.description = <<-DESC\n Licensee automates the process of reading LICENSE files and\n compares their contents to known licenses using a fancy maths.\n DESC\n\n gem.authors = ['Ben Balter']\n gem.email = 'ben.balter@github.com'\n gem.homepage = 'https://github.com/benbalter/licensee'\n gem.license = 'MIT'\n\n gem.bindir = 'bin'\n gem.executables << 'licensee'\n\n gem.add_dependency('dotenv', '~> 2.0')\n gem.add_dependency('octokit', '~> 4.8.0')\n gem.add_dependency('rugged', '~> 0.24')\n gem.add_dependency('thor', '~> 0.19')\n\n gem.add_development_dependency('coveralls', '~> 0.8')\n gem.add_development_dependency('mustache', '>= 0.9', '< 2.0')\n gem.add_development_dependency('pry', '~> 0.9')\n gem.add_development_dependency('rake', '~> 10.3')\n gem.add_development_dependency('rspec', '~> 3.5')\n gem.add_development_dependency('rubocop', '~> 0.49')\n gem.add_development_dependency('webmock', '~> 3.1')\n\n gem.required_ruby_version = '> 2.2'\n\n # ensure the gem is built out of versioned files\n gem.files = Dir[\n 'Rakefile',\n '{bin,lib,man,test,vendor,spec}/**/*',\n 'README*', 'LICENSE*'\n ] & `git ls-files -z`.split(\"\\0\")\nend\n",
102
102
  "content_hash": null,
103
103
  "content_normalized": null,
104
104
  "matcher": {
@@ -186,6 +186,15 @@ RSpec.describe 'integration test' do
186
186
  expect(subject.license).to eql(license)
187
187
  end
188
188
  end
189
+
190
+ context 'BSD-3-Clause numbered and bulleted' do
191
+ let(:license) { Licensee::License.find('bsd-3-clause') }
192
+ let(:fixture) { 'bsd-3-lists' }
193
+
194
+ it 'determines the project is BSD-3-Clause' do
195
+ expect(subject.license).to eql(license)
196
+ end
197
+ end
189
198
  end
190
199
 
191
200
  context 'with the license file stubbed' do
@@ -25,7 +25,7 @@ RSpec.describe Licensee::ContentHelper do
25
25
  This license provided 'as is'. Please respect the contributors' wishes when
26
26
  implementing the license's "software".
27
27
  -----------
28
- LICENSE
28
+ LICENSE
29
29
  end
30
30
  subject { ContentHelperTestHelper.new(content) }
31
31
  let(:mit) { Licensee::License.find('mit') }
@@ -201,7 +201,7 @@ RSpec.describe Licensee::License do
201
201
  end
202
202
 
203
203
  it 'uses the default name when none exists' do
204
- expect(other.name).to eql('Other')
204
+ expect(other.name).to eql('NOASSERTION')
205
205
  end
206
206
 
207
207
  it 'expoeses the nickname' do
@@ -22,12 +22,12 @@ RSpec.describe Licensee::Matchers::Dice do
22
22
 
23
23
  it 'sorts licenses by similarity' do
24
24
  expect(subject.licenses_by_similiarity[0]).to eql([gpl, 100.0])
25
- expect(subject.licenses_by_similiarity[1]).to eql([agpl, 95.73361082206036])
25
+ expect(subject.licenses_by_similiarity[1]).to eql([agpl, 95.76581285938317])
26
26
  end
27
27
 
28
28
  it 'returns a list of licenses above the confidence threshold' do
29
29
  expect(subject.licenses_by_similiarity[0]).to eql([gpl, 100.0])
30
- expect(subject.licenses_by_similiarity[1]).to eql([agpl, 95.73361082206036])
30
+ expect(subject.licenses_by_similiarity[1]).to eql([agpl, 95.76581285938317])
31
31
  end
32
32
 
33
33
  it 'returns the match confidence' do
@@ -37,7 +37,7 @@ limitations:
37
37
  GNU AFFERO GENERAL PUBLIC LICENSE
38
38
  Version 3, 19 November 2007
39
39
 
40
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
40
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
41
41
  Everyone is permitted to copy and distribute verbatim copies
42
42
  of this license document, but changing it is not allowed.
43
43
 
@@ -679,7 +679,7 @@ the "copyright" line and a pointer to where the full notice is found.
679
679
  GNU Affero General Public License for more details.
680
680
 
681
681
  You should have received a copy of the GNU Affero General Public License
682
- along with this program. If not, see <http://www.gnu.org/licenses/>.
682
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
683
683
 
684
684
  Also add information on how to contact you by electronic and paper mail.
685
685
 
@@ -694,4 +694,4 @@ specific requirements.
694
694
  You should also get your employer (if you work as a programmer) or school,
695
695
  if any, to sign a "copyright disclaimer" for the program, if necessary.
696
696
  For more information on this, and how to apply and follow the GNU AGPL, see
697
- <http://www.gnu.org/licenses/>.
697
+ <https://www.gnu.org/licenses/>.
@@ -4,7 +4,7 @@ spdx-id: CC0-1.0
4
4
  redirect_from: /licenses/cc0/
5
5
  source: https://creativecommons.org/publicdomain/zero/1.0/
6
6
 
7
- description: The <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons CC0 Public Domain Dedication</a> waives copyright interest in any a work you've created and dedicates it to the world-wide public domain. Use CC0 to opt out of copyright entirely and ensure your work has the widest reach. As with the Unlicense and typical software licenses, CC0 disclaims warranties. CC0 is very similar to the Unlicense.
7
+ description: The <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons CC0 Public Domain Dedication</a> waives copyright interest in a work you've created and dedicates it to the world-wide public domain. Use CC0 to opt out of copyright entirely and ensure your work has the widest reach. As with the Unlicense and typical software licenses, CC0 disclaims warranties. CC0 is very similar to the Unlicense.
8
8
 
9
9
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the CC0 into the file.
10
10
 
@@ -12,7 +12,7 @@ note: The Apereo Foundation recommends taking the additional step of adding a bo
12
12
  using:
13
13
  - Sakai: https://github.com/sakaiproject/sakai/blob/master/LICENSE
14
14
  - OAE: https://github.com/oaeproject/Hilary/blob/master/LICENSE
15
- - Opencast: https://bitbucket.org/opencast-community/opencast/src/905077ba5e6483f8c49869a1fc13bf9268790a79/LICENSE
15
+ - Opencast: https://github.com/opencast/opencast/blob/develop/LICENSE
16
16
 
17
17
  permissions:
18
18
  - commercial-use
@@ -2,14 +2,13 @@
2
2
  title: Eclipse Public License 1.0
3
3
  spdx-id: EPL-1.0
4
4
  source: https://www.eclipse.org/legal/epl-v10.html
5
- hidden: true
6
5
 
7
6
  description: This commercially-friendly copyleft license provides the ability to commercially license binaries; a modern royalty-free patent license grant; and the ability for linked works to use other licenses, including commercial ones.
8
7
 
9
8
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
10
9
 
11
10
  using:
12
- - Eclipse Che: https://github.com/eclipse/che/blob/master/LICENSE
11
+ - Eclipse hawkBit: https://github.com/eclipse/hawkbit/blob/master/LICENSE
13
12
  - JUnit: https://github.com/junit-team/junit4/blob/master/LICENSE-junit.txt
14
13
  - openHAB: https://github.com/openhab/openhab-distro/blob/master/LICENSE
15
14
 
@@ -12,7 +12,7 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
12
12
  using:
13
13
  - Eclipse Ditto: https://github.com/eclipse/ditto/blob/master/LICENSE
14
14
  - Eclipse SmartHome: https://github.com/eclipse/smarthome/blob/master/LICENSE
15
- - SUMO: https://github.com/DLR-TS/sumo/blob/master/COPYING
15
+ - SUMO: https://github.com/eclipse/sumo/blob/master/LICENSE
16
16
 
17
17
  permissions:
18
18
  - commercial-use
@@ -40,7 +40,7 @@ limitations:
40
40
  GNU GENERAL PUBLIC LICENSE
41
41
  Version 3, 29 June 2007
42
42
 
43
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
43
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
44
44
  Everyone is permitted to copy and distribute verbatim copies
45
45
  of this license document, but changing it is not allowed.
46
46
 
@@ -684,7 +684,7 @@ the "copyright" line and a pointer to where the full notice is found.
684
684
  GNU General Public License for more details.
685
685
 
686
686
  You should have received a copy of the GNU General Public License
687
- along with this program. If not, see <http://www.gnu.org/licenses/>.
687
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
688
688
 
689
689
  Also add information on how to contact you by electronic and paper mail.
690
690
 
@@ -703,11 +703,11 @@ might be different; for a GUI interface, you would use an "about box".
703
703
  You should also get your employer (if you work as a programmer) or school,
704
704
  if any, to sign a "copyright disclaimer" for the program, if necessary.
705
705
  For more information on this, and how to apply and follow the GNU GPL, see
706
- <http://www.gnu.org/licenses/>.
706
+ <https://www.gnu.org/licenses/>.
707
707
 
708
708
  The GNU General Public License does not permit incorporating your program
709
709
  into proprietary programs. If your program is a subroutine library, you
710
710
  may consider it more useful to permit linking proprietary applications with
711
711
  the library. If this is what you want to do, use the GNU Lesser General
712
712
  Public License instead of this License. But first, please read
713
- <http://www.gnu.org/philosophy/why-not-lgpl.html>.
713
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
@@ -36,7 +36,7 @@ limitations:
36
36
  GNU LESSER GENERAL PUBLIC LICENSE
37
37
  Version 3, 29 June 2007
38
38
 
39
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
39
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
40
40
  Everyone is permitted to copy and distribute verbatim copies
41
41
  of this license document, but changing it is not allowed.
42
42
 
@@ -10,7 +10,7 @@ how: To use it, say that it is The PostgreSQL License, and then substitute the c
10
10
  using:
11
11
  - pgBadger: https://github.com/dalibo/pgbadger/blob/master/LICENSE
12
12
  - pgAdmin: https://github.com/postgres/pgadmin4/blob/master/LICENSE
13
- - .NET Access to PostgreSQL: https://github.com/npgsql/npgsql/blob/dev/LICENSE.txt
13
+ - .NET Access to PostgreSQL: https://github.com/npgsql/npgsql/blob/dev/LICENSE
14
14
 
15
15
  permissions:
16
16
  - commercial-use
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: licensee
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.9.1
4
+ version: 9.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-04 00:00:00.000000000 Z
11
+ date: 2018-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -222,6 +222,8 @@ files:
222
222
  - spec/fixtures/apache-with-readme-notice/LICENSE
223
223
  - spec/fixtures/apache-with-readme-notice/LICENSE.header
224
224
  - spec/fixtures/apache-with-readme-notice/README.md
225
+ - spec/fixtures/bsd-3-lists/LICENSE.BULLETS
226
+ - spec/fixtures/bsd-3-lists/LICENSE.NUMBERS
225
227
  - spec/fixtures/bsd-plus-patents/PATENTS
226
228
  - spec/fixtures/bsd-plus-patents/license.txt
227
229
  - spec/fixtures/bsl/LICENSE_1_0.txt
@@ -335,9 +337,9 @@ require_paths:
335
337
  - lib
336
338
  required_ruby_version: !ruby/object:Gem::Requirement
337
339
  requirements:
338
- - - ">="
340
+ - - ">"
339
341
  - !ruby/object:Gem::Version
340
- version: '2.1'
342
+ version: '2.2'
341
343
  required_rubygems_version: !ruby/object:Gem::Requirement
342
344
  requirements:
343
345
  - - ">="