trollop 2.9.9 → 2.9.10

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
- SHA1:
3
- metadata.gz: 5a587709d3c4100adc33b5edccb8a8f87cca5fdc
4
- data.tar.gz: 4f0aec9b59949e64dff6d65584fe2c8b0324deba
2
+ SHA256:
3
+ metadata.gz: 314b910a9f43d13913211b3e39f60b89dc5f50868d2525281f59733fc21a198f
4
+ data.tar.gz: 8071583bb1cd186e2d9683913112373e1fae53224e6da185836caad6a4c2fe35
5
5
  SHA512:
6
- metadata.gz: 902490f2c0bd55672b5e3b5c37586b8ffc07377cf20047369f162ae6045ce272a2274edbaff9047d262853cdd2c859b73042a835ce90f1fbf486db9404c3e255
7
- data.tar.gz: 1bebf3eae50c0ccfdbb4715469c2249fbd19f2d078511bffbd3449ae488da7afbdd41b9e097ac95783b9e0d49c1a27cd200a56e61e107109c716e9d6ef9faba7
6
+ metadata.gz: b36e96caf58656addb2c3edd3c4e973833ff14b53ff28109d69387a7f5f83f52ef35e8afee29ffd74e1898bcfebf056b7abc3fd69ef3905e954d85b37ef647e3
7
+ data.tar.gz: 2bd01ba3d0ec85eb2e607a4a40898243b43d63d22980d594e5f0a7816fa89a1a54310a07c5b6152db8311396961267c050c3565032279d0c2ffb8dc062ae78e2
@@ -1,4 +1,7 @@
1
- == [2.9.9] / 2018-08-49
1
+ == [2.9.10] / 2019-11-25
2
+ * Improved deprecation messge to include this gem's name (thanks @henrik)
3
+
4
+ == [2.9.9] / 2018-08-24
2
5
 
3
6
  * [DEPRECATION] This gem has been renamed to optimist and will no longer be supported. Please switch to optimist as soon as possible.
4
7
 
@@ -1,4 +1,4 @@
1
- warn "[DEPRECATION] This gem has been renamed to optimist and will no longer be supported. Please switch to optimist as soon as possible."
1
+ warn "[DEPRECATION] The trollop gem has been renamed to optimist and will no longer be supported. Please switch to optimist as soon as possible."
2
2
 
3
3
  # lib/trollop.rb -- trollop command-line processing library
4
4
  # Copyright (c) 2008-2014 William Morgan.
@@ -10,7 +10,7 @@ require 'date'
10
10
  module Trollop
11
11
  # note: this is duplicated in gemspec
12
12
  # please change over there too
13
- VERSION = "2.9.9"
13
+ VERSION = "2.9.10"
14
14
 
15
15
  ## Thrown by Parser in the event of a commandline error. Not needed if
16
16
  ## you're using the Trollop::options entry.
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "trollop"
7
- spec.version = "2.9.9"
7
+ spec.version = "2.9.10"
8
8
  spec.authors = ["William Morgan", "Keenan Brock"]
9
9
  spec.email = "keenan@thebrocks.net"
10
10
  spec.summary = "Trollop is a commandline option parser for Ruby that just gets out of your way."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trollop
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.9
4
+ version: 2.9.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Morgan
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-08-24 00:00:00.000000000 Z
12
+ date: 2019-11-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 2.6.13
112
+ rubygems_version: 2.7.6.2
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Trollop is a commandline option parser for Ruby that just gets out of your