wayneeseguin-rvm 0.0.31 → 0.0.35
Sign up to get free protection for your applications and to get access to all the features.
- data/config/db +20 -0
- data/rvm.gemspec +8 -4
- data/scripts/rvm +10 -1207
- data/scripts/rvm-cli +230 -0
- data/scripts/rvm-install +2 -7
- data/scripts/rvm-ruby-installer +346 -0
- data/scripts/rvm-selector +188 -0
- data/scripts/rvm-update +12 -13
- data/scripts/rvm-utility +459 -0
- metadata +8 -5
- data/config/cache +0 -23
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wayneeseguin-rvm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.35
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wayne E. Seguin
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-09-
|
12
|
+
date: 2009-09-05 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -26,16 +26,19 @@ files:
|
|
26
26
|
- INSTALL
|
27
27
|
- LICENCE
|
28
28
|
- README
|
29
|
-
- config/
|
29
|
+
- config/db
|
30
30
|
- examples/rvmrc
|
31
31
|
- lib/rvm.rb
|
32
32
|
- rvm.gemspec
|
33
33
|
- scripts/rvm
|
34
|
+
- scripts/rvm-cli
|
34
35
|
- scripts/rvm-install
|
36
|
+
- scripts/rvm-ruby-installer
|
37
|
+
- scripts/rvm-selector
|
35
38
|
- scripts/rvm-update
|
39
|
+
- scripts/rvm-utility
|
36
40
|
has_rdoc: false
|
37
41
|
homepage: http://github.com/wayneeseguin/rvm
|
38
|
-
licenses:
|
39
42
|
post_install_message:
|
40
43
|
rdoc_options:
|
41
44
|
- --inline-source
|
@@ -57,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
60
|
requirements: []
|
58
61
|
|
59
62
|
rubyforge_project: dynamicreports
|
60
|
-
rubygems_version: 1.
|
63
|
+
rubygems_version: 1.2.0
|
61
64
|
signing_key:
|
62
65
|
specification_version: 3
|
63
66
|
summary: Ruby Version Manager (rvm)
|
data/config/cache
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
rvm_niceness=0
|
2
|
-
rvm_archives_path=$rvm_install_path/archives
|
3
|
-
rvm_source_path=$rvm_install_path/src
|
4
|
-
rvm_log_path=$rvm_install_path/log
|
5
|
-
rvm_bin_path=$rvm_install_path/bin
|
6
|
-
rvm_gem_path=$rvm_install_path/gems
|
7
|
-
rvm_config_path=$rvm_install_path/config
|
8
|
-
rvm_ruby_repo_url=http://svn.ruby-lang.org/repos/ruby
|
9
|
-
rvm_rubinius_repo_url=git://github.com/evanphx/rubinius.git
|
10
|
-
rvm_macruby_repo_url=http://svn.macosforge.org/repository/ruby/MacRuby
|
11
|
-
rvm_jruby_repo_url=git://kenai.com/jruby~main
|
12
|
-
rvm_ruby_configure=--enable-shared
|
13
|
-
rvm_ruby_interpreter=ruby
|
14
|
-
rvm_jruby_version=1.3.1
|
15
|
-
rvm_ree_version=1.8.6
|
16
|
-
rvm_ree_patch_level=20090610
|
17
|
-
rvm_ruby_version=1.8.6
|
18
|
-
rvm_ruby_1.9.1_patch_level=p243
|
19
|
-
rvm_ruby_1.9.2_patch_level=preview1
|
20
|
-
rvm_ruby_1.8.5_patch_level=p115
|
21
|
-
rvm_ruby_1.8.6_patch_level=p369
|
22
|
-
rvm_ruby_1.8.7_patch_level=p174
|
23
|
-
|