rvm1-capistrano3 0.8.0 → 0.9.0
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 +5 -5
- data/lib/rvm1/capistrano3.rb +1 -0
- data/lib/rvm1/capistrano3/version.rb +1 -1
- data/lib/rvm1/tasks/capistrano3.rake +2 -1
- data/lib/rvm1/tasks/capistrano3/install.rake +24 -0
- data/script/install-rvm.sh +24 -0
- data/script/rvm-auto.sh +3 -3
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 2da7ddee8d21fd4ef862fa1031a2dad65648b23a
|
4
|
-
data.tar.gz: df1d69d6dac6d4dd1842abead1ef8fffd7f557f8
|
5
2
|
SHA512:
|
6
|
-
|
7
|
-
|
3
|
+
data.tar.gz: 84bb26b89bfda0fa7c8c7a56ece14664aeb616defdbb586d3718166224fea7755bcd58caec9c8213b8fb08795a51c421a5f455c59e657758b5885df10afe9a86
|
4
|
+
metadata.gz: a8c5c51d287577eed8aa3210026ee4d4531862421c2ae8459ca1f506f3101dbac853533bd3953e52d64c29f20f37d834731bf6b287625592bd9b15a513a727da
|
5
|
+
SHA1:
|
6
|
+
data.tar.gz: 541da513f4c5e7aa0fcc817fc5f4aff6d5d73997
|
7
|
+
metadata.gz: 92d407c0e5906c1aef66011e2764a01eda35c022
|
data/lib/rvm1/capistrano3.rb
CHANGED
@@ -27,11 +27,12 @@ namespace :rvm1 do
|
|
27
27
|
puts capture(:rvm, "version")
|
28
28
|
puts capture(:rvm, "list")
|
29
29
|
puts capture(:rvm, "current")
|
30
|
-
within fetch(:
|
30
|
+
within fetch(:release_path) do
|
31
31
|
puts capture(:ruby, "--version || true")
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
35
|
+
before :check, "deploy:updating"
|
35
36
|
before :check, 'rvm1:hook'
|
36
37
|
|
37
38
|
task :init do
|
@@ -0,0 +1,24 @@
|
|
1
|
+
namespace :rvm1 do
|
2
|
+
namespace :install do
|
3
|
+
desc "Installs RVM 1.x user mode"
|
4
|
+
task :rvm do
|
5
|
+
on roles(:all) do
|
6
|
+
execute :mkdir, "-p", "#{fetch(:tmp_dir)}/#{fetch(:application)}/"
|
7
|
+
upload! File.expand_path("../../../../../script/install-rvm.sh", __FILE__), "#{fetch(:tmp_dir)}/#{fetch(:application)}/install-rvm.sh"
|
8
|
+
execute :chmod, "+x", "#{fetch(:tmp_dir)}/#{fetch(:application)}/install-rvm.sh"
|
9
|
+
execute "#{fetch(:tmp_dir)}/#{fetch(:application)}/install-rvm.sh"
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Installs Ruby for the given ruby project"
|
14
|
+
task :ruby do
|
15
|
+
on roles(:all) do
|
16
|
+
within fetch(:release_path) do
|
17
|
+
execute "#{fetch(:tmp_dir)}/#{fetch(:application)}/rvm-auto.sh", "rvm", "use", "--install", fetch(:rvm1_ruby_version)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
before :ruby, "deploy:updating"
|
22
|
+
before :ruby, 'rvm1:hook'
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/usr/bin/env sh
|
2
|
+
|
3
|
+
# silence curl via configuration
|
4
|
+
export CURL_HOME="${TMP_DIR:-/tmp}/.rvm-curl-config.$$"
|
5
|
+
mkdir "${CURL_HOME}/" &&
|
6
|
+
{
|
7
|
+
test -r "${HOME}/.curlrc" && cat "${HOME}/.curlrc"
|
8
|
+
echo "silent"
|
9
|
+
echo "show-error"
|
10
|
+
} > "$CURL_HOME/.curlrc" ||
|
11
|
+
exit $?
|
12
|
+
|
13
|
+
# run the installer
|
14
|
+
if \curl -L https://get.rvm.io -o rvm-installer.sh && bash rvm-installer.sh stable
|
15
|
+
then __LAST_STATUS=0
|
16
|
+
else __LAST_STATUS=$?
|
17
|
+
fi
|
18
|
+
rm -f rvm-installer.sh
|
19
|
+
|
20
|
+
# cleanup curl
|
21
|
+
rm -rf "$CURL_HOME"
|
22
|
+
|
23
|
+
# return installer status
|
24
|
+
exit ${__LAST_STATUS}
|
data/script/rvm-auto.sh
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rvm1-capistrano3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michal Papis
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-28 00:00:00 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|
@@ -43,7 +43,9 @@ extra_rdoc_files: []
|
|
43
43
|
files:
|
44
44
|
- lib/rvm1/capistrano3.rb
|
45
45
|
- lib/rvm1/capistrano3/version.rb
|
46
|
+
- lib/rvm1/tasks/capistrano3/install.rake
|
46
47
|
- lib/rvm1/tasks/capistrano3.rake
|
48
|
+
- script/install-rvm.sh
|
47
49
|
- script/rvm-auto.sh
|
48
50
|
- test/script_rvm-auto_comment_test.sh
|
49
51
|
homepage: https://github.com/rvm/rvm1-capistrano3
|