zool 0.1.1 → 0.1.2

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.
Files changed (5) hide show
  1. data/README.md +9 -0
  2. data/Rakefile +1 -1
  3. data/Readme.md +9 -0
  4. data/bin/zool +1 -1
  5. metadata +1 -1
data/README.md CHANGED
@@ -3,6 +3,15 @@ Zool
3
3
  zool (which is named after Zuul, "The Gatekeeper", from the movie [Ghostbusters](http://en.wikipedia.org/wiki/Ghostbusters)) is a gem to manage authorized_keys files on a set of n servers.
4
4
  It comes with a command-line client named zool which gives you access to the common tasks.
5
5
 
6
+ Installation
7
+ ------------
8
+
9
+ * install [ruby](http://www.ruby-lang.org)
10
+ * install [rubygems](http://docs.rubygems.org/read/chapter/3)
11
+ * gem install [zool](http://github.com/paukul/zool)
12
+
13
+ You also need a zool.conf file and a keys directory (where the public keys are stored) to use the command-line client.
14
+
6
15
  The command-line client
7
16
  -----------------------
8
17
 
data/Rakefile CHANGED
@@ -25,7 +25,7 @@ begin
25
25
  s.email = "paukul@gmail.com"
26
26
  s.homepage = "http://github.com/paukul/zool"
27
27
  s.authors = ["Pascal Friederich"]
28
- s.version = ["0.1.1"]
28
+ s.version = ["0.1.2"]
29
29
  s.files.exclude 'vendor', 'spec', 'features', '.gitignore', 'Gemfile'
30
30
  s.test_files.include 'features/**/*'
31
31
  s.test_files.exclude 'features/tmp'
data/Readme.md CHANGED
@@ -3,6 +3,15 @@ Zool
3
3
  zool (which is named after Zuul, "The Gatekeeper", from the movie [Ghostbusters](http://en.wikipedia.org/wiki/Ghostbusters)) is a gem to manage authorized_keys files on a set of n servers.
4
4
  It comes with a command-line client named zool which gives you access to the common tasks.
5
5
 
6
+ Installation
7
+ ------------
8
+
9
+ * install [ruby](http://www.ruby-lang.org)
10
+ * install [rubygems](http://docs.rubygems.org/read/chapter/3)
11
+ * gem install [zool](http://github.com/paukul/zool)
12
+
13
+ You also need a zool.conf file and a keys directory (where the public keys are stored) to use the command-line client.
14
+
6
15
  The command-line client
7
16
  -----------------------
8
17
 
data/bin/zool CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
- require 'lib/zool'
3
+ require 'zool'
4
4
  require 'optparse'
5
5
  require 'highline'
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pascal Friederich