rvm1-capistrano3 1.3.2.2 → 1.4.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
CHANGED
@@ -1,7 +1,15 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
YjU0YTk1NmViODRlZjhiMTk2NzlkY2FlMGQ4ZmVhY2I4ZjIwYWRhYg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MDYzZDE4MTNmOGVkMGU2MTE1M2FiMjYzOWRlNmZmMGMxNjNmMzA0MA==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OGM3Mzc5ZjZkMDBmNDQ3YTBkYWUzMzRiMmFmNzhmODFkN2I3YjMwMGY4MGY2
|
10
|
+
NDFkNGIzZmEyNmM2NTk2MmJlNjk0YmM1OTUzYTQwNzA1MzgzYzExYWRiZTJm
|
11
|
+
Yzg3YjM1NjdjZGI2YjA0MDQwYTIwZmVkNWYxNjEyMjhlZTk4OGM=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZTcxYzUxZjVmYjljN2FiNGI5NTY3YWU1MDUyY2RkZWRjYWVhMTkxYTQ1OTFl
|
14
|
+
OWFhMDUwMzM2MTBhYzRlZGZmNjAxMjViNjJkOWIwYjZhYmY2MDgwMzQ2OGFl
|
15
|
+
NDM2Mzg5ZDMyNjMwZjExODJjMDJjNmJlNTY0ZjMxYTZhM2QxOTA=
|
@@ -38,7 +38,7 @@ end
|
|
38
38
|
namespace :load do
|
39
39
|
task :defaults do
|
40
40
|
set :rvm1_ruby_version, "."
|
41
|
-
set :rvm1_map_bins, %w{rake gem bundle ruby}
|
41
|
+
set :rvm1_map_bins, -> { fetch(:rvm_map_bins, %w{rake gem bundle ruby}) }
|
42
42
|
set :rvm1_alias_name, -> { fetch(:application) }
|
43
43
|
set :rvm1_auto_script_path, -> { "#{fetch(:deploy_to)}/rvm1scripts" }
|
44
44
|
end
|
@@ -41,8 +41,8 @@ namespace :rvm1 do
|
|
41
41
|
on roles(fetch(:rvm1_roles, :all)) do
|
42
42
|
within fetch(:release_path) do
|
43
43
|
execute "#{fetch(:rvm1_auto_script_path)}/rvm-auto.sh",
|
44
|
-
|
45
|
-
fetch(:rvm1_alias_name),
|
44
|
+
"rvm", "alias", "create",
|
45
|
+
fetch(:rvm1_alias_name), fetch(:rvm1_ruby_version)
|
46
46
|
end
|
47
47
|
end
|
48
48
|
end
|
@@ -18,11 +18,11 @@ rvm_path=random $script no_ruby_found # status=102
|
|
18
18
|
## use ruby from current dir - Gemfile is set to 1.8.7
|
19
19
|
$script . ruby -v # match=/1.8.7/
|
20
20
|
|
21
|
-
## use rvm to make sure 2.
|
22
|
-
$script rvm install 2.
|
21
|
+
## use rvm to make sure 2.2.3 is installed
|
22
|
+
$script rvm install 2.2.3 # status=0
|
23
23
|
|
24
24
|
## use a ruby
|
25
|
-
$script 2.
|
25
|
+
$script 2.2.3 ruby -v # match=/2.2.3/
|
26
26
|
|
27
27
|
## retest current dir ruby still works
|
28
28
|
$script . ruby -v # match=/1.8.7/
|
metadata
CHANGED
@@ -1,56 +1,64 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rvm1-capistrano3
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Michal Papis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
15
14
|
name: capistrano
|
16
|
-
|
17
|
-
|
18
|
-
requirements:
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
19
17
|
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version:
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
22
20
|
type: :runtime
|
23
|
-
version_requirements: *id001
|
24
|
-
- !ruby/object:Gem::Dependency
|
25
|
-
name: sshkit
|
26
21
|
prerelease: false
|
27
|
-
|
28
|
-
requirements:
|
29
|
-
- -
|
30
|
-
- !ruby/object:Gem::Version
|
31
|
-
version:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sshkit
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.2'
|
32
34
|
type: :runtime
|
33
|
-
version_requirements: *id002
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: tf
|
36
35
|
prerelease: false
|
37
|
-
|
38
|
-
requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: tf
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
39
45
|
- - ~>
|
40
|
-
- !ruby/object:Gem::Version
|
46
|
+
- !ruby/object:Gem::Version
|
41
47
|
version: 0.4.3
|
42
48
|
type: :development
|
43
|
-
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.4.3
|
44
55
|
description: RVM 1.x / Capistrano 3.x Integration Gem
|
45
|
-
email:
|
56
|
+
email:
|
46
57
|
- mpapis@gmail.com
|
47
58
|
executables: []
|
48
|
-
|
49
59
|
extensions: []
|
50
|
-
|
51
60
|
extra_rdoc_files: []
|
52
|
-
|
53
|
-
files:
|
61
|
+
files:
|
54
62
|
- lib/rvm1/capistrano3.rb
|
55
63
|
- lib/rvm1/capistrano3/version.rb
|
56
64
|
- lib/rvm1/tasks/capistrano3.rake
|
@@ -59,31 +67,29 @@ files:
|
|
59
67
|
- script/rvm-auto.sh
|
60
68
|
- test/script_rvm-auto_comment_test.sh
|
61
69
|
homepage: https://github.com/rvm/rvm1-capistrano3
|
62
|
-
licenses:
|
70
|
+
licenses:
|
63
71
|
- Apache 2
|
64
72
|
metadata: {}
|
65
|
-
|
66
73
|
post_install_message:
|
67
74
|
rdoc_options: []
|
68
|
-
|
69
|
-
require_paths:
|
75
|
+
require_paths:
|
70
76
|
- lib
|
71
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
-
|
74
|
-
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ! '>='
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
80
87
|
requirements: []
|
81
|
-
|
82
88
|
rubyforge_project:
|
83
|
-
rubygems_version: 2.
|
89
|
+
rubygems_version: 2.4.6
|
84
90
|
signing_key:
|
85
91
|
specification_version: 4
|
86
92
|
summary: RVM 1.x / Capistrano 3.x Integration Gem
|
87
|
-
test_files:
|
93
|
+
test_files:
|
88
94
|
- test/script_rvm-auto_comment_test.sh
|
89
95
|
has_rdoc:
|