toquen 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/toquen/capistrano.rb +0 -1
- data/lib/toquen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03d480a8369ee1f7c855189c7db461f3d8c95bf8
|
4
|
+
data.tar.gz: a4755e38ef177e6d28febd66ebcfc34d34e98de8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 595d496bbd37f96fe7c7ebe0187143621dbead9822341da298eb3e455238d5fb13943d9dedeab3bd134331e10c8f3decedc031ee2e40c8e374f3758e22ea6f2d
|
7
|
+
data.tar.gz: e4d1b969d8eb3a0db4ef5530e499e3813f3b509c2a680d826fe917f69f8e17c57367e9b40c179856f8e6fb50ace453a054ba9980082715a64ee3c69c1990d422
|
data/README.md
CHANGED
@@ -170,7 +170,13 @@ Toquen can also drop off a config file meant for use by applications on your sys
|
|
170
170
|
1. Toquen looks for a file named "apps.json" in your config folder, and if it's found, Toquen pulls out all of the keys that correspond with the server's roles and merges them together with the hash it's building (if this file contains secrets, consider *not* including in revision control)
|
171
171
|
1. The resulting hash is dropped off in your user's home directory (this can be overridden with the apps_config_path config variable) with the filename "apps.json".
|
172
172
|
|
173
|
-
|
173
|
+
Most likely, you'll want to add this line to your deploy.rb:
|
174
|
+
|
175
|
+
```ruby
|
176
|
+
after :cook, :update_appconfig
|
177
|
+
```
|
178
|
+
|
179
|
+
so that it will be run on every cook. You can always run it separately as:
|
174
180
|
|
175
181
|
```shell
|
176
182
|
cap <role name> update_appconfig
|
data/lib/toquen/capistrano.rb
CHANGED
data/lib/toquen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: toquen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Muller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|