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.
Files changed (3) hide show
  1. data/lib/VERSION.yml +1 -1
  2. data/rvm.gemspec +26 -6
  3. metadata +28 -8
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 1
4
- :patch: 5
4
+ :patch: 6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rvm}
8
- s.version = "1.1.5"
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-14}
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
- In order to setup rvm for your user's environment you must now run rvm-install.
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
- rvm-install will install the scripts to your user account and append itself to your profiles in order to
58
- inject the proper rvm functions into your shell so that you can manage multiple rubies.
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: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 5
10
- version: 1.1.5
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-14 00:00:00 -05:00
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
- In order to setup rvm for your user's environment you must now run rvm-install.
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
- rvm-install will install the scripts to your user account and append itself to your profiles in order to
72
- inject the proper rvm functions into your shell so that you can manage multiple rubies.
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