rna 0.3.4 → 0.3.5
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 +5 -5
- data/lib/files/rna.rb +1 -1
- data/lib/rna/version.rb +1 -1
- data/spec/project/config/rna/api.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -62,7 +62,7 @@ role 'prod-api-app', 'stag-api-app' do
|
|
|
62
62
|
run_list ['base','api_app']
|
|
63
63
|
node[:application] = 'api'
|
|
64
64
|
node[:deploy_code] = true
|
|
65
|
-
node[:repository] = 'git@github.com:
|
|
65
|
+
node[:repository] = 'git@github.com:owner/repo.git/api.git'
|
|
66
66
|
end
|
|
67
67
|
role 'prod-api-resque', 'stag-api-resque' do
|
|
68
68
|
includes 'prod-api-app'
|
|
@@ -154,7 +154,7 @@ output/prod-api-app.json:
|
|
|
154
154
|
],
|
|
155
155
|
"application": "api",
|
|
156
156
|
"deploy_code": true,
|
|
157
|
-
"repository": "git@github.com:
|
|
157
|
+
"repository": "git@github.com:owner/repo.git/api.git",
|
|
158
158
|
"post_rule": 2,
|
|
159
159
|
"framework_env": "production"
|
|
160
160
|
}
|
|
@@ -188,7 +188,7 @@ output/prod-api-resque.json:
|
|
|
188
188
|
],
|
|
189
189
|
"application": "api",
|
|
190
190
|
"deploy_code": true,
|
|
191
|
-
"repository": "git@github.com:
|
|
191
|
+
"repository": "git@github.com:owner/repo.git/api.git",
|
|
192
192
|
"workers": 8,
|
|
193
193
|
"post_rule": 2,
|
|
194
194
|
"framework_env": "production"
|
|
@@ -207,7 +207,7 @@ output/stag-api-app.json:
|
|
|
207
207
|
],
|
|
208
208
|
"application": "api",
|
|
209
209
|
"deploy_code": true,
|
|
210
|
-
"repository": "git@github.com:
|
|
210
|
+
"repository": "git@github.com:owner/repo.git/api.git",
|
|
211
211
|
"post_rule": 2,
|
|
212
212
|
"framework_env": "staging"
|
|
213
213
|
}
|
|
@@ -241,7 +241,7 @@ output/stag-api-resque.json:
|
|
|
241
241
|
],
|
|
242
242
|
"application": "api",
|
|
243
243
|
"deploy_code": true,
|
|
244
|
-
"repository": "git@github.com:
|
|
244
|
+
"repository": "git@github.com:owner/repo.git/api.git",
|
|
245
245
|
"workers": 8,
|
|
246
246
|
"post_rule": 2,
|
|
247
247
|
"framework_env": "staging"
|
data/lib/files/rna.rb
CHANGED
|
@@ -32,7 +32,7 @@ role 'prod-api-app', 'stag-api-app' do
|
|
|
32
32
|
run_list ['base','api_app']
|
|
33
33
|
node[:application] = 'api'
|
|
34
34
|
node[:deploy_code] = true
|
|
35
|
-
node[:repository] = 'git@github.com:
|
|
35
|
+
node[:repository] = 'git@github.com:owner/repo.git/api.git'
|
|
36
36
|
end
|
|
37
37
|
role 'prod-api-resque', 'stag-api-resque' do
|
|
38
38
|
includes 'prod-api-app'
|
data/lib/rna/version.rb
CHANGED
|
@@ -8,7 +8,7 @@ role 'prod-api-app', 'stag-api-app' do
|
|
|
8
8
|
role_list ['base','api_app']
|
|
9
9
|
node[:application] = 'api'
|
|
10
10
|
node[:deploy_code] = true
|
|
11
|
-
node[:repository] = 'git@github.com:
|
|
11
|
+
node[:repository] = 'git@github.com:owner/repo.git/api.git'
|
|
12
12
|
node[:scout][:key] = 'abc'
|
|
13
13
|
node[:scout][:gems] = {'redis' => nil}
|
|
14
14
|
node[:relayhost] = settings[:sendgrid][:relayhost]
|