hammer_cli 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f3bb9d5531d8e5c2686fa69e7715c4f746c677b
4
- data.tar.gz: 9af8fd7a349392f0c00e69df2183fe0015232639
3
+ metadata.gz: 009e7aa80bff80abe875cff5efe57e351b27901e
4
+ data.tar.gz: 0efeda00147b71a2a90be95c3cd2c6aa0f37a5d5
5
5
  SHA512:
6
- metadata.gz: 220f699b4bdd24f5ad223a9b9d310361de3da6ebf5fa222425f1efcade8fc81d7d66392794bb6f5cac5f5311f20f646187a819b4f63955cde1a44ea96300b36d
7
- data.tar.gz: 7bfee673681c83321ce82f73981f7c5f90be6d6e4ed78fbd6fae73ebc98cbbe319d37e3c084f2c742d84b2e395d3c434e296d442fb980b94b938b1ba45b9ea9b
6
+ metadata.gz: 4af2dc0f31f5dd8e2335b99d0600d209192b81d26feaa11bd68d0e5cac1745378b357e9612ae13723edb789aa288212780e304b15bffad3c938bc3b22c7591fe
7
+ data.tar.gz: 02e6d0e3e9613c9252f75c96db03f20936b2250cd040da01c9ce824569d99bedcb8c3a9a40a58345316b9c5347d13ddc25679703b858949409c7fc582a8e3d68
data/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ This program and entire repository is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
2
+
3
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
4
+
5
+ You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
@@ -0,0 +1,13 @@
1
+ #
2
+ # Hammer CLI bash completion script
3
+ #
4
+ # vim:ts=2:sw=2:et:
5
+ #
6
+
7
+ _hammer() {
8
+ COMPREPLY=($(hammer --autocomplete "${COMP_WORDS[*]}"))
9
+ return 0
10
+ }
11
+
12
+ complete -F _hammer hammer
13
+
@@ -1,5 +1,5 @@
1
1
  module HammerCLI
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.0.10'
3
+ @version ||= Gem::Version.new '0.0.11'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Bačovský
@@ -140,6 +140,7 @@ extra_rdoc_files:
140
140
  - doc/development_tips.md
141
141
  - doc/writing_a_plugin.md
142
142
  files:
143
+ - LICENSE
143
144
  - README.md
144
145
  - bin/hammer
145
146
  - config/cli_config.template.yml
@@ -150,6 +151,7 @@ files:
150
151
  - doc/developer_docs.md
151
152
  - doc/development_tips.md
152
153
  - doc/writing_a_plugin.md
154
+ - hammer_cli_complete
153
155
  - lib/hammer_cli.rb
154
156
  - lib/hammer_cli/abstract.rb
155
157
  - lib/hammer_cli/apipie.rb