rvm 1.1.5 → 1.1.6
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.
- data/lib/VERSION.yml +1 -1
- data/rvm.gemspec +26 -6
- metadata +28 -8
data/lib/VERSION.yml
CHANGED
data/rvm.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rvm}
|
8
|
-
s.version = "1.1.
|
8
|
+
s.version = "1.1.6"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Wayne E. Seguin"]
|
12
|
-
s.date = %q{2010-12-
|
12
|
+
s.date = %q{2010-12-17}
|
13
13
|
s.default_executable = %q{rvm-install}
|
14
14
|
s.description = %q{Manages Ruby interpreter environments and switching between them.}
|
15
15
|
s.email = %q{wayneeseguin@gmail.com}
|
@@ -51,11 +51,31 @@ Gem::Specification.new do |s|
|
|
51
51
|
s.homepage = %q{http://github.com/wayneeseguin/rvm}
|
52
52
|
s.post_install_message = %q{********************************************************************************
|
53
53
|
|
54
|
-
|
55
|
-
rvm-install will be found in your current gems bin directory corresponding to where the gem was installed.
|
54
|
+
This gem contains only the Ruby libraries for the RVM Ruby API.
|
56
55
|
|
57
|
-
|
58
|
-
|
56
|
+
In order to install RVM please use one of the methods listed in the documentation
|
57
|
+
|
58
|
+
http://rvm.beginrescueend.com/rvm/install/
|
59
|
+
|
60
|
+
such as,
|
61
|
+
|
62
|
+
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-latest )
|
63
|
+
|
64
|
+
followed by placing the sourcing line in your ~/.bash_profile or wherever may
|
65
|
+
be appropriate for your setup (example, .zshenv, /etc/profile, ...):
|
66
|
+
|
67
|
+
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
68
|
+
|
69
|
+
After completing setup please open a new shell to use RVM and be sure to run
|
70
|
+
'rvm notes' to gain a list of dependencies to install before installing the
|
71
|
+
first Ruby. You can read more details about this process on the above
|
72
|
+
mentioned install page as well as the basics page:
|
73
|
+
|
74
|
+
http://rvm.beginrescueend.com/rvm/basics/
|
75
|
+
|
76
|
+
Enjoy!
|
77
|
+
|
78
|
+
~Wayne
|
59
79
|
|
60
80
|
********************************************************************************
|
61
81
|
}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rvm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 6
|
10
|
+
version: 1.1.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Wayne E. Seguin
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-12-
|
18
|
+
date: 2010-12-17 00:00:00 -05:00
|
19
19
|
default_executable: rvm-install
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -65,11 +65,31 @@ licenses: []
|
|
65
65
|
post_install_message: |
|
66
66
|
********************************************************************************
|
67
67
|
|
68
|
-
|
69
|
-
rvm-install will be found in your current gems bin directory corresponding to where the gem was installed.
|
68
|
+
This gem contains only the Ruby libraries for the RVM Ruby API.
|
70
69
|
|
71
|
-
|
72
|
-
|
70
|
+
In order to install RVM please use one of the methods listed in the documentation
|
71
|
+
|
72
|
+
http://rvm.beginrescueend.com/rvm/install/
|
73
|
+
|
74
|
+
such as,
|
75
|
+
|
76
|
+
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-latest )
|
77
|
+
|
78
|
+
followed by placing the sourcing line in your ~/.bash_profile or wherever may
|
79
|
+
be appropriate for your setup (example, .zshenv, /etc/profile, ...):
|
80
|
+
|
81
|
+
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
82
|
+
|
83
|
+
After completing setup please open a new shell to use RVM and be sure to run
|
84
|
+
'rvm notes' to gain a list of dependencies to install before installing the
|
85
|
+
first Ruby. You can read more details about this process on the above
|
86
|
+
mentioned install page as well as the basics page:
|
87
|
+
|
88
|
+
http://rvm.beginrescueend.com/rvm/basics/
|
89
|
+
|
90
|
+
Enjoy!
|
91
|
+
|
92
|
+
~Wayne
|
73
93
|
|
74
94
|
********************************************************************************
|
75
95
|
|