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.
- data/README.md +9 -0
- data/Rakefile +1 -1
- data/Readme.md +9 -0
- data/bin/zool +1 -1
- 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.
|
|
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