climatic 0.2.32 → 0.2.34

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: 3e3047ae70ff0dac8e5be4fdb2afd99791d693dd
4
- data.tar.gz: 2d82bed3aa55147508880299b5fb884d20733a4d
3
+ metadata.gz: 46caf165d67b6900c1f4133f3de0f9015b187aa0
4
+ data.tar.gz: 8aa01e7f0f1766b56ef832f1a635805739b697e9
5
5
  SHA512:
6
- metadata.gz: bfd963884d7a279edad6a5bf80b4784a389515424e0fd68f81ca30224e521ae3186f957ac4d5d8794203fb7debaa6ced10f2167062e6a01bf97d7382a08be63d
7
- data.tar.gz: 1c226df799802151ada3338b12e73252d0e03a464d7db879b3ce7c68d51966562ba838a940e2207e292abc7f2eb25e43ce4622fc2e62e6683f999433142b2ee4
6
+ metadata.gz: 87f1ef318eb72f2d2ee598fff268354eb16d38fb73d7171a00b8675f54217be6e75912d616683ea573fe8fcea4bf261ce9bdbcb75a4f7acef629b4d4e4bd9d80
7
+ data.tar.gz: d7e12ea8d8e53b7913490af06625cecfcd624ccc4a11d57aebba9bb22f245278c11aee868f69730ae444fd84c7a0fdc1f9db358f7cf2657359f90407add067d8
data/climatic.gemspec CHANGED
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency 'rake', '~> 10.0'
25
25
  spec.add_development_dependency 'rspec', '~> 3.0'
26
26
 
27
- spec.add_dependency 'ultra_command_line', '~> 0.4.10'
27
+ spec.add_dependency 'ultra_command_line', '~> 0.4.12'
28
28
  end
@@ -42,7 +42,7 @@ module Climatic
42
42
  sub_commands = command_line_manager.commands.select {|command| not command.root_command?}
43
43
  unless sub_commands.empty?
44
44
  res.concat SUB_COMMANDS_HELP_HEADER
45
- sub_commands.each do |command|
45
+ sub_commands.sort{|a,b| a.name <=> b.name }.each do |command|
46
46
  # command_summary = "#{command.help[0][0,60].tr("\n", ' ')}..."
47
47
  res << " * #{command.name}: #{command_summary command}"
48
48
  end
@@ -1,3 +1,3 @@
1
1
  module Climatic
2
- VERSION = '0.2.32'.freeze
2
+ VERSION = '0.2.34'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: climatic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.32
4
+ version: 0.2.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurent B.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-01 00:00:00.000000000 Z
11
+ date: 2019-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.4.10
61
+ version: 0.4.12
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.4.10
68
+ version: 0.4.12
69
69
  description: A CLI framework to ease command-line tools creation.
70
70
  email:
71
71
  - lbnetid+gh@gmail.com