commander 4.3.5 → 4.3.7
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 +4 -4
- data/.travis.yml +4 -2
- data/Gemfile +1 -1
- data/History.rdoc +9 -0
- data/lib/commander/help_formatters.rb +1 -1
- data/lib/commander/help_formatters/terminal/command_help.erb +1 -1
- data/lib/commander/user_interaction.rb +2 -3
- data/lib/commander/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba1823d2bcff49f4c59b140925c2773f17f3579f
|
4
|
+
data.tar.gz: 4f909e1d446cba6c1eb61fe1b92077d4378bffb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cd8a8409c9f0201a2a9e94b9d9f1aa6e15de1512f83af9acba6f26b420b3c12f898fb47b08d83b9756f3e791b9278a755f6ee0c337603a3a4f45ba7c719505b
|
7
|
+
data.tar.gz: 27f9dcd16f94f57b40ad39bd93d02b0f673202b5f95d8f813aebe3b0d406f0dfb5c3f5d0619cd8c3147a43cd795f20c50c1054a0ec0a9716b05eadb26e230aea
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/History.rdoc
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
=== 4.3.7 / 2016-01-26
|
2
|
+
|
3
|
+
* Fix regression in help formatter introduced in 4.3.6.
|
4
|
+
|
5
|
+
=== 4.3.6 / 2016-01-26 [YANKED]
|
6
|
+
|
7
|
+
* Fix deprecation warnings on Ruby 2.3.0.
|
8
|
+
* Indent option descriptions the same way as program and command descriptions. (@badeball)
|
9
|
+
|
1
10
|
=== 4.3.5 / 2015-08-09
|
2
11
|
|
3
12
|
* Fixed a bug with small terminal widths, changed minimum screen width for wrapping to 40 columns. (@toolmantim)
|
@@ -329,9 +329,8 @@ module Commander
|
|
329
329
|
[Float, Integer, String, Symbol, Regexp, Array, File, Pathname] +
|
330
330
|
# All Classes that respond to #parse
|
331
331
|
Object.constants.map do |const|
|
332
|
-
# const_get(:
|
333
|
-
|
334
|
-
Object.const_get(const) unless const == :Config
|
332
|
+
# const_get(:TimeoutError) issues a deprecation warning on ruby 2.3.0
|
333
|
+
Object.const_get(const) unless const == :TimeoutError
|
335
334
|
end.select do |const|
|
336
335
|
const.class == Class && const.respond_to?(:parse)
|
337
336
|
end
|
data/lib/commander/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commander
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TJ Holowaychuk
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-01-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: highline
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
157
|
version: '0'
|
158
158
|
requirements: []
|
159
159
|
rubyforge_project:
|
160
|
-
rubygems_version: 2.4.
|
160
|
+
rubygems_version: 2.4.6
|
161
161
|
signing_key:
|
162
162
|
specification_version: 4
|
163
163
|
summary: The complete solution for Ruby command-line executables
|