commander 4.4.0 → 4.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.rdoc +5 -0
- data/commander.gemspec +3 -0
- data/lib/commander/user_interaction.rb +1 -1
- 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: 6f99aeb41258777769c560127ccfc168d2c673e1
|
4
|
+
data.tar.gz: e374077ade7007619a37e26bb587c0d7be336df6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75c44b69d218b6843b2c30a1ee8ebeadb9867d797323bcd00c261628005b1c772c3990a16d78df93dc5494bd099ea04af7027ccaa81026b920b8c29a5440b795
|
7
|
+
data.tar.gz: b1e6fb8f2aa3bdccffb093aa49c107d37370106638b9a12f04f9a8320ce5e597fd3044834b941c5556128cca82bfe1e0ad5048d1a159f7b12617b75f05df6995
|
data/History.rdoc
CHANGED
data/commander.gemspec
CHANGED
@@ -330,7 +330,7 @@ module Commander
|
|
330
330
|
# All Classes that respond to #parse
|
331
331
|
Object.constants.map do |const|
|
332
332
|
# Ignore constants that trigger deprecation warnings
|
333
|
-
Object.const_get(const) unless [:Config, :TimeoutError].include?(const)
|
333
|
+
Object.const_get(const) unless [:Config, :TimeoutError, :MissingSourceFile].include?(const)
|
334
334
|
end.select do |const|
|
335
335
|
const.class == Class && const.respond_to?(:parse)
|
336
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.4.
|
4
|
+
version: 4.4.1
|
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: 2016-02
|
12
|
+
date: 2016-12-02 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.
|
160
|
+
rubygems_version: 2.5.1
|
161
161
|
signing_key:
|
162
162
|
specification_version: 4
|
163
163
|
summary: The complete solution for Ruby command-line executables
|