magic_recipes_two 0.0.83 → 0.0.84
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/capistrano/magic_recipes/version.rb +1 -1
- data/lib/capistrano/tasks/pwa.rake +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OWI3NWQzNjJiYjA5ODlmZmUyOWZmYWZmNDQyMTg4YjU5ZWI4YjA3ZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTk5OTIwM2IyZjMyZjgzMzI0YmYwYjNhYTRkNzdiMzY2Y2MxMTJiMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
M2I1YjczNjBmZDU4Y2Q0ZmM5MGMzYTkwMGM1OGE1MGE0NjhiMTI0OWEyOGRk
|
10
|
+
MzMyNWY4YTVlNDA0MzNiNmU5ODA5OTdjMmUzMWVmYzM2NWNjNDIxNzQxNDA0
|
11
|
+
YmNkYzAxM2M4MWZiZmE2MTBiZDU5YjcwZDA0MjA4MjQ2MmE0NTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZjVmNDUwMGUxY2MyMGRkNjRlODIwNTY1Y2M1MDM3MzAyODE1YTExYjIwOGY0
|
14
|
+
YTY0Y2I0NjBmNjZjNTQxY2Q0MWNkYTZhZWQ1Njc2YTMyOWViYjBlOWI5YWYx
|
15
|
+
YzNlZDk0MDhlZmMxZmYwOWEyYzcwYWE4OGExZWZiNzYxYjAxY2U=
|
@@ -63,8 +63,8 @@ namespace :nginx do
|
|
63
63
|
set :sites_available, -> { File.join(fetch(:nginx_root_path), fetch(:nginx_sites_available)) }
|
64
64
|
set :sites_enabled, -> { File.join(fetch(:nginx_root_path), fetch(:nginx_sites_enabled)) }
|
65
65
|
set :nginx_pwa_application, -> { "pwa_#{fetch(:pwa_application)}_#{fetch(:stage)}" }
|
66
|
-
set :enabled_pwa_application, -> { File.join(fetch(:sites_enabled), "#{fetch(:
|
67
|
-
set :available_pwa_application, -> { File.join(fetch(:sites_available), "#{fetch(:
|
66
|
+
set :enabled_pwa_application, -> { File.join(fetch(:sites_enabled), "#{fetch(:nginx_pwa_application)}") }
|
67
|
+
set :available_pwa_application, -> { File.join(fetch(:sites_available), "#{fetch(:nginx_pwa_application)}") }
|
68
68
|
end
|
69
69
|
|
70
70
|
namespace :pwa_site do
|