capistranovelys 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/lib/capistrano/novelys/rails2.rb +2 -2
- data/lib/capistrano/novelys/version.rb +1 -1
- 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: bf43dc5cfa937aedb411d6fc78c89c0774ce622e
|
4
|
+
data.tar.gz: 3215f8004ab47fd42b0b19d3e2092925808f7733
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27f57b6e57d6dfe8d86640063aa0eae536fb4a21ae0eae8a51db8bc25b9fb7b2851e8a2513faa3ae6738f526bf683c10668b6091172afb4fe0a39f727ea86eab
|
7
|
+
data.tar.gz: ffcfcf21a61034dff4fdc5df39555458e47dd92694dbef3499bad02c957e13f203c532e5c31283b8847d0b2ccf9b3f96041d06addb69a18a0808f802b049bbe4
|
@@ -8,12 +8,12 @@ namespace :rails2 do
|
|
8
8
|
namespace :secret_token do
|
9
9
|
desc "Copy the secret token file to the server"
|
10
10
|
task :copy do
|
11
|
-
upload "config/initializers/session_store.rb", "#{shared_path}/config/
|
11
|
+
upload "config/initializers/session_store.rb", "#{shared_path}/config/initializers/session_store.rb", :via => :scp
|
12
12
|
end
|
13
13
|
|
14
14
|
desc "Symlink the secret token file in the current release"
|
15
15
|
task :symlink do
|
16
|
-
run "test -f #{release_path}/initializers/session_store.rb || ln -s #{shared_path}/initializers/session_store.rb #{release_path}/initializers/session_store.rb"
|
16
|
+
run "test -f #{release_path}/config/initializers/session_store.rb || ln -s #{shared_path}/config/initializers/session_store.rb #{release_path}/config/initializers/session_store.rb"
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|