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 +4 -4
- data/climatic.gemspec +1 -1
- data/lib/climatic/config_layers/command_line_manager_binder.rb +1 -1
- data/lib/climatic/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46caf165d67b6900c1f4133f3de0f9015b187aa0
|
|
4
|
+
data.tar.gz: 8aa01e7f0f1766b56ef832f1a635805739b697e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87f1ef318eb72f2d2ee598fff268354eb16d38fb73d7171a00b8675f54217be6e75912d616683ea573fe8fcea4bf261ce9bdbcb75a4f7acef629b4d4e4bd9d80
|
|
7
|
+
data.tar.gz: d7e12ea8d8e53b7913490af06625cecfcd624ccc4a11d57aebba9bb22f245278c11aee868f69730ae444fd84c7a0fdc1f9db358f7cf2657359f90407add067d8
|
data/climatic.gemspec
CHANGED
|
@@ -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
|
data/lib/climatic/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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.
|
|
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
|