rvm 0.0.55 → 0.0.56
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/config/db +1 -2
- data/examples/rvmrc +3 -0
- data/install +1 -0
- data/lib/VERSION.yml +1 -1
- data/scripts/cli +31 -42
- data/scripts/completion +2 -2
- data/scripts/gems +180 -0
- data/scripts/install +1 -0
- data/scripts/ruby-installer +70 -67
- data/scripts/rvm +1 -0
- data/scripts/rvm-install +1 -0
- data/scripts/selector +57 -55
- data/scripts/update +1 -0
- data/scripts/utility +143 -218
- metadata +3 -3
- data/rvm.gemspec +0 -62
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rvm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.56
|
|
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-10-
|
|
12
|
+
date: 2009-10-09 00:00:00 -04:00
|
|
13
13
|
default_executable: rvm-install
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -30,11 +30,11 @@ files:
|
|
|
30
30
|
- lib/VERSION.yml
|
|
31
31
|
- lib/rvm.rb
|
|
32
32
|
- lib/rvm/version.rb
|
|
33
|
-
- rvm.gemspec
|
|
34
33
|
- scripts/aliases
|
|
35
34
|
- scripts/cli
|
|
36
35
|
- scripts/completion
|
|
37
36
|
- scripts/functions
|
|
37
|
+
- scripts/gems
|
|
38
38
|
- scripts/gemsync
|
|
39
39
|
- scripts/install
|
|
40
40
|
- scripts/ruby-installer
|
data/rvm.gemspec
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
-
# -*- encoding: utf-8 -*-
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |s|
|
|
7
|
-
s.name = %q{rvm}
|
|
8
|
-
s.version = "0.0.55"
|
|
9
|
-
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Wayne E. Seguin"]
|
|
12
|
-
s.date = %q{2009-10-05}
|
|
13
|
-
s.default_executable = %q{rvm-install}
|
|
14
|
-
s.description = %q{Manages Ruby interpreter installations and switching between them.}
|
|
15
|
-
s.email = %q{wayneeseguin@gmail.com}
|
|
16
|
-
s.executables = ["rvm-install"]
|
|
17
|
-
s.extra_rdoc_files = [
|
|
18
|
-
"README"
|
|
19
|
-
]
|
|
20
|
-
s.files = [
|
|
21
|
-
"LICENCE",
|
|
22
|
-
"README",
|
|
23
|
-
"config/db",
|
|
24
|
-
"examples/rvmrc",
|
|
25
|
-
"install",
|
|
26
|
-
"lib/VERSION.yml",
|
|
27
|
-
"lib/rvm.rb",
|
|
28
|
-
"lib/rvm/version.rb",
|
|
29
|
-
"rvm.gemspec",
|
|
30
|
-
"scripts/aliases",
|
|
31
|
-
"scripts/cli",
|
|
32
|
-
"scripts/completion",
|
|
33
|
-
"scripts/functions",
|
|
34
|
-
"scripts/gemsync",
|
|
35
|
-
"scripts/install",
|
|
36
|
-
"scripts/ruby-installer",
|
|
37
|
-
"scripts/rvm",
|
|
38
|
-
"scripts/rvm-install",
|
|
39
|
-
"scripts/rvm-prompt",
|
|
40
|
-
"scripts/selector",
|
|
41
|
-
"scripts/update",
|
|
42
|
-
"scripts/utility"
|
|
43
|
-
]
|
|
44
|
-
s.homepage = %q{http://github.com/wayneeseguin/rvm}
|
|
45
|
-
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
|
|
46
|
-
s.require_paths = ["lib"]
|
|
47
|
-
s.rubyforge_project = %q{rvm}
|
|
48
|
-
s.rubygems_version = %q{1.3.5}
|
|
49
|
-
s.summary = %q{Ruby Version Manager (rvm)}
|
|
50
|
-
s.test_files = [
|
|
51
|
-
]
|
|
52
|
-
|
|
53
|
-
if s.respond_to? :specification_version then
|
|
54
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
55
|
-
s.specification_version = 3
|
|
56
|
-
|
|
57
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
58
|
-
else
|
|
59
|
-
end
|
|
60
|
-
else
|
|
61
|
-
end
|
|
62
|
-
end
|