commander 4.4.0 → 4.4.1

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
  SHA1:
3
- metadata.gz: 0e9fa3f3fbb6475cdf02ae043991c17ec9058107
4
- data.tar.gz: 39f8b6530783b95688fa20d4b6ac4b7bb43ec0ab
3
+ metadata.gz: 6f99aeb41258777769c560127ccfc168d2c673e1
4
+ data.tar.gz: e374077ade7007619a37e26bb587c0d7be336df6
5
5
  SHA512:
6
- metadata.gz: 612b57dc06491d404d072a6e8eec9da8c1727e65fe23afa48c36c183e7ff706de9cb1c4bc3f5adfef67d03ee2be9ac8dab0f9eb6328dbfe758479c9ead834a0f
7
- data.tar.gz: 2141c0258fd8b2818c7f3eacf02809a32dcc68326822920bb8756215ab777bb46d10b58848d959eeb8b95da864d150331e79d15f61ab938b4fef946b6b9d008e
6
+ metadata.gz: 75c44b69d218b6843b2c30a1ee8ebeadb9867d797323bcd00c261628005b1c772c3990a16d78df93dc5494bd099ea04af7027ccaa81026b920b8c29a5440b795
7
+ data.tar.gz: b1e6fb8f2aa3bdccffb093aa49c107d37370106638b9a12f04f9a8320ce5e597fd3044834b941c5556128cca82bfe1e0ad5048d1a159f7b12617b75f05df6995
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 4.4.1 / 2016-12-02
2
+
3
+ * Fix #36 - Warning about MissingSourceFile (@fallwith)
4
+ * Fix build on Ruby 1.9
5
+
1
6
  === 4.4.0 / 2016-02-19
2
7
 
3
8
  * Add modular style template initialization. (@lebogan)
data/commander.gemspec CHANGED
@@ -23,4 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.add_development_dependency('rake')
24
24
  s.add_development_dependency('simplecov')
25
25
  s.add_development_dependency('rubocop', '~> 0.29.1')
26
+ if RUBY_VERSION < '2.0'
27
+ s.add_development_dependency('json', '< 2.0')
28
+ end
26
29
  end
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Commander
2
- VERSION = '4.4.0'
2
+ VERSION = '4.4.1'
3
3
  end
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.0
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-19 00:00:00.000000000 Z
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.4.6
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