forest_liana 1.7.9 → 1.7.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/forest_liana/version.rb +1 -1
- data/lib/generators/forest_liana/install_generator.rb +9 -9
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f2a59c7557554688b8b010fb63ddbee7abe9bb5
|
4
|
+
data.tar.gz: 549c364c345a1d5208e40bd122b9ec89e19c7dae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f79cc38a20bdb0c16433f462f647f52f484590058e1a8c187f52e7f39f23b8252f0585d94ad2fd2fc4d5bb13e524f55e719bb75fd0245f1172a44130cad7546
|
7
|
+
data.tar.gz: 88a5d634939beeaadae83972945774297477e3fa52585f1b951e69ceb09086ee525b8bbf8ba3f46e4f4d304b38ed452c581cf7eacb51066d4791eacffc9e091c
|
data/lib/forest_liana/version.rb
CHANGED
@@ -20,19 +20,19 @@ module ForestLiana
|
|
20
20
|
"data access of your local project.\nYou can change it at any time in " +
|
21
21
|
"your config/secrets.yml file.\n\n"
|
22
22
|
|
23
|
-
inject_into_file 'config/secrets.yml', after: "development
|
24
|
-
"
|
25
|
-
"
|
23
|
+
inject_into_file 'config/secrets.yml', after: "development:\n" do
|
24
|
+
" forest_env_secret: #{env_secret}\n" +
|
25
|
+
" forest_auth_secret: #{auth_secret}\n"
|
26
26
|
end
|
27
27
|
|
28
|
-
inject_into_file 'config/secrets.yml', after: "staging
|
29
|
-
"
|
30
|
-
"
|
28
|
+
inject_into_file 'config/secrets.yml', after: "staging:\n", force: true do
|
29
|
+
" forest_env_secret: <%= ENV[\"FOREST_ENV_SECRET\"] %>\n" +
|
30
|
+
" forest_auth_secret: <%= ENV[\"FOREST_AUTH_SECRET\"] %>\n"
|
31
31
|
end
|
32
32
|
|
33
|
-
inject_into_file 'config/secrets.yml', after: "production
|
34
|
-
"
|
35
|
-
"
|
33
|
+
inject_into_file 'config/secrets.yml', after: "production:\n", force: true do
|
34
|
+
" forest_env_secret: <%= ENV[\"FOREST_ENV_SECRET\"] %>\n" +
|
35
|
+
" forest_auth_secret: <%= ENV[\"FOREST_AUTH_SECRET\"] %>\n"
|
36
36
|
end
|
37
37
|
end
|
38
38
|
end
|