bashly 0.7.3 → 0.7.4
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 111e5735cbcae769cf990a20aabd6d2868181251bf366b180d1e0325316a29b0
|
|
4
|
+
data.tar.gz: 017c1fc803802af3c186b356e9720ed3fd362990ed30b455e12aa2b34b4be6a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 743c31be7ec2553940700cda415dcbf377dcf6362b18edc4b3e292130024ddf6b3230e26d48603ca4e90ce17464dc71c07e685741614e5047b6f9570d369b8da
|
|
7
|
+
data.tar.gz: 88ce26cb94af15fb3813b387d93723a60aea6487038eaeb467ee22e23ea3823cf5bfc06ed8cccab0e8a7d1f5a89a198a117a468516734bce8a92033462f6741a
|
|
@@ -135,6 +135,7 @@ module Bashly
|
|
|
135
135
|
assert_array "#{key}.commands", value['commands'], of: :command
|
|
136
136
|
assert_array "#{key}.completions", value['completions'], of: :string
|
|
137
137
|
assert_array "#{key}.dependencies", value['dependencies'], of: :string
|
|
138
|
+
assert_array "#{key}.filters", value['filters'], of: :string
|
|
138
139
|
assert_array "#{key}.environment_variables", value['environment_variables'], of: :env_var
|
|
139
140
|
assert_array "#{key}.examples", value['examples'], of: :string
|
|
140
141
|
end
|
data/lib/bashly/script/base.rb
CHANGED
data/lib/bashly/version.rb
CHANGED
|
@@ -7,6 +7,7 @@ parse_requirements() {
|
|
|
7
7
|
<%= render(:fixed_flags_filter).indent 2 %>
|
|
8
8
|
<%= render(:environment_variables_filter).indent 2 %>
|
|
9
9
|
<%= render(:dependencies_filter).indent 2 %>
|
|
10
|
+
<%= render(:user_filter).indent 2 %>
|
|
10
11
|
<%= render(:command_filter).indent 2 %>
|
|
11
12
|
<%= render(:parse_requirements_while).indent 2 %>
|
|
12
13
|
<%= render(:required_args_filter).indent 2 %>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bashly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danny Ben Shitrit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colsole
|
|
@@ -155,6 +155,7 @@ files:
|
|
|
155
155
|
- lib/bashly/views/command/usage_examples.erb
|
|
156
156
|
- lib/bashly/views/command/usage_fixed_flags.erb
|
|
157
157
|
- lib/bashly/views/command/usage_flags.erb
|
|
158
|
+
- lib/bashly/views/command/user_filter.erb
|
|
158
159
|
- lib/bashly/views/command/user_lib.erb
|
|
159
160
|
- lib/bashly/views/command/version_command.erb
|
|
160
161
|
- lib/bashly/views/command/whitelist_filter.erb
|
|
@@ -188,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
188
189
|
- !ruby/object:Gem::Version
|
|
189
190
|
version: '0'
|
|
190
191
|
requirements: []
|
|
191
|
-
rubygems_version: 3.3.
|
|
192
|
+
rubygems_version: 3.3.7
|
|
192
193
|
signing_key:
|
|
193
194
|
specification_version: 4
|
|
194
195
|
summary: Bash Command Line Tool Generator
|