capistrano-exfel 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/capistrano/exfel/version.rb +1 -1
- data/lib/capistrano/recipes/config/secrets_example.yml +1 -1
- data/lib/capistrano/tasks/secrets.rake +4 -4
- 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: c382e3e124886cc19f9c480a44afcd1e0275e374
|
4
|
+
data.tar.gz: 3cc6c89c62797dc4c990c46183995a5523d6a70a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de51ee4b2892cfed2b6422632b73c2640ec998203374425bb8fb6cdfcf8471dbb9487c119850ee2d026c2434415261e38bc642cc2f729990a5aded6f44c0b926
|
7
|
+
data.tar.gz: 57819b8d0bc8f9a566e911e1b9da3f3e13fd34058377d6805498dc32f135158e733441dcef0667ad1e10e44aedd885bdf8ffe7db98771c2604e3d37e1d7481aa
|
data/README.md
CHANGED
@@ -34,7 +34,7 @@ defaults: &defaults
|
|
34
34
|
# Examples:
|
35
35
|
# * "" - The application URI routing is done via HTTP Server (e.g. Apache or NGINX)
|
36
36
|
# * 'my_app' - The application URI routing must be done via code
|
37
|
-
routes_base_uri:
|
37
|
+
routes_base_uri: ""
|
38
38
|
|
39
39
|
# Application full url to be used as config.action_mailer.default_url_options (e.g. https://example.com/my_app)
|
40
40
|
app_full_url: '<<APP_FULL_URL>>'
|
@@ -35,10 +35,10 @@ namespace :secrets do
|
|
35
35
|
upload! StringIO.new(File.read("#{fetch(:secrets_original_file_path)}")), "#{fetch(:secrets_file_path)}"
|
36
36
|
end
|
37
37
|
|
38
|
-
execute "sed -i 's
|
39
|
-
execute "sed -i 's
|
40
|
-
execute "sed -i 's
|
41
|
-
execute "sed -i 's
|
38
|
+
execute "sed -i 's|<<APP_NAME>>|#{fetch(:app_name)}|g' #{fetch(:secrets_file_path)}"
|
39
|
+
execute "sed -i 's|<<APP_DOMAIN>>|#{fetch(:app_domain)}|g' #{fetch(:secrets_file_path)}"
|
40
|
+
execute "sed -i 's|<<APP_NAME_URI>>|#{fetch(:app_name_uri)}|g' #{fetch(:secrets_file_path)}"
|
41
|
+
execute "sed -i 's|<<APP_FULL_URL>>|#{fetch(:app_full_url)}|g' #{fetch(:secrets_file_path)}"
|
42
42
|
|
43
43
|
debug '#' * 50
|
44
44
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-exfel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Maia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|