getopt 1.4.4 → 1.5.0

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
  SHA256:
3
- metadata.gz: 686d33e55b2c112171c79a42bd3fe4e84eac024f04ef4523523aad17c628dd43
4
- data.tar.gz: 2e9f498abcb51dc6c926d7814f8ab0b4d824adec1d37642b26b7fa041f998481
3
+ metadata.gz: 99ad66e79501d20a7843a33a34eb9f87b0e50104e2f3ebf859bd0c8438c8a8b6
4
+ data.tar.gz: efa7c0566bc69b9450ef3d30b58f8b19f5e96c496423f42b892ed43ca527711e
5
5
  SHA512:
6
- metadata.gz: '027628a21d93e2ca0efb18c39376fb4a5fee5cb4eb8fb9ed5e4d3b38fd8caa4567efda95a0de0ea957ab5bff81ce039511ac72af99cd901e6860ecec1fc8c46a'
7
- data.tar.gz: 97876faaac893803d5ac129d1ac980b74ad34a9e5b730bae449d044588541690894721d7e5b092c4406b7b318e200155d38625b8fa076c360edd5a5a69abaab9
6
+ metadata.gz: a085c54bc733cde23f172ea2a64f8c68b63d857e46dea68c986025abc2b75cd43c18e9a34cd2f2d5a13beaded891759c06306ab7b30895322538c5490ccc3d63
7
+ data.tar.gz: b1fab5263c19e9e229d9a9d292bb4b8894a93eec47b9f92cdb70d37485b35cd4e82921aeb725ed4c47df9946fd9fa3f02b1e1627a2ed1d7de50d40689b0eefb5
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.5.0 - 25-Jan-2019
2
+ * Changed license to Apache-2.0.
3
+
1
4
  == 1.4.4 - 24-Mar-2018
2
5
  * Fixed a deprecation warning.
3
6
  * Now requires Ruby 2.2 or later.
data/README CHANGED
@@ -181,10 +181,10 @@ INCREMENT
181
181
  warranties of merchantability and fitness for a particular purpose.
182
182
 
183
183
  = License
184
- Artistic 2.0
184
+ Apache-2.0
185
185
 
186
186
  = Copyright
187
- (C) 2005-2018, Daniel J. Berger
187
+ (C) 2005-2019, Daniel J. Berger
188
188
  All Rights Reserved
189
189
 
190
190
  = Author
@@ -2,9 +2,9 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'getopt'
5
- spec.version = '1.4.4'
5
+ spec.version = '1.5.0'
6
6
  spec.author = 'Daniel J. Berger'
7
- spec.license = 'Artistic 2.0'
7
+ spec.license = 'Apache-2.0'
8
8
  spec.email = 'djberg96@gmail.com'
9
9
  spec.homepage = 'https://github.com/djberg96/getopt'
10
10
  spec.summary = 'Getopt::Std and Getopt::Long option parsers for Ruby'
@@ -1,6 +1,6 @@
1
1
  module Getopt
2
2
  module Version
3
3
  # The version of the getopt library
4
- VERSION = '1.4.4'.freeze
4
+ VERSION = '1.5.0'.freeze
5
5
  end
6
6
  end
@@ -14,7 +14,7 @@ class TC_Getopt_Long < Test::Unit::TestCase
14
14
  end
15
15
 
16
16
  def test_version
17
- assert_equal('1.4.4', Long::VERSION)
17
+ assert_equal('1.5.0', Long::VERSION)
18
18
  assert_true(Long::VERSION.frozen?)
19
19
  end
20
20
 
@@ -10,7 +10,7 @@ include Getopt
10
10
 
11
11
  class TC_Getopt_Std < Test::Unit::TestCase
12
12
  def test_version
13
- assert_equal('1.4.4', Std::VERSION)
13
+ assert_equal('1.5.0', Std::VERSION)
14
14
  assert_true(Std::VERSION.frozen?)
15
15
  end
16
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: getopt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -35,7 +35,7 @@ cert_chain:
35
35
  ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
36
36
  WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
37
37
  -----END CERTIFICATE-----
38
- date: 2018-03-24 00:00:00.000000000 Z
38
+ date:
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: test-unit
@@ -64,30 +64,30 @@ extra_rdoc_files:
64
64
  - CHANGES
65
65
  - MANIFEST
66
66
  files:
67
+ - test
68
+ - test/test_getopt_long.rb
69
+ - test/test_getopt_std.rb
70
+ - CHANGES
71
+ - MANIFEST
72
+ - README
73
+ - Rakefile
67
74
  - certs
68
75
  - certs/djberg96_pub.pem
69
- - CHANGES
70
76
  - examples
71
- - examples/example_long.rb
72
77
  - examples/example_std.rb
73
- - getopt.gemspec
78
+ - examples/example_long.rb
74
79
  - lib
80
+ - lib/getopt.rb
75
81
  - lib/getopt
76
82
  - lib/getopt/long.rb
77
83
  - lib/getopt/std.rb
78
84
  - lib/getopt/version.rb
79
85
  - lib/getopt-long.rb
80
86
  - lib/getopt-std.rb
81
- - lib/getopt.rb
82
- - MANIFEST
83
- - Rakefile
84
- - README
85
- - test
86
- - test/test_getopt_long.rb
87
- - test/test_getopt_std.rb
87
+ - getopt.gemspec
88
88
  homepage: https://github.com/djberg96/getopt
89
89
  licenses:
90
- - Artistic 2.0
90
+ - Apache-2.0
91
91
  metadata:
92
92
  homepage_uri: https://github.com/djberg96/getopt
93
93
  bug_tracker_uri: https://github.com/djberg96/getopt/issues
@@ -110,8 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  requirements: []
113
- rubyforge_project:
114
- rubygems_version: 2.7.6
113
+ rubygems_version: 3.0.2
115
114
  signing_key:
116
115
  specification_version: 4
117
116
  summary: Getopt::Std and Getopt::Long option parsers for Ruby
metadata.gz.sig CHANGED
Binary file