rvm 0.0.80 → 0.0.81

Sign up to get free protection for your applications and to get access to all the features.
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.80
4
+ version: 0.0.81
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne E. Seguin
@@ -24,7 +24,6 @@ extra_rdoc_files:
24
24
  files:
25
25
  - LICENCE
26
26
  - README
27
- - binscripts/gemsync
28
27
  - binscripts/rvm-prompt
29
28
  - config/db
30
29
  - examples/rvmrc
@@ -40,11 +39,17 @@ files:
40
39
  - scripts/cli
41
40
  - scripts/color
42
41
  - scripts/completion
42
+ - scripts/db
43
+ - scripts/fetch
43
44
  - scripts/functions
44
45
  - scripts/gems
46
+ - scripts/initialize
45
47
  - scripts/install
46
48
  - scripts/irbrc
47
49
  - scripts/irbrc.rb
50
+ - scripts/log
51
+ - scripts/match
52
+ - scripts/monitor
48
53
  - scripts/ruby-installer
49
54
  - scripts/rvm
50
55
  - scripts/rvm-install
@@ -1,21 +0,0 @@
1
- #!/usr/bin/env bash
2
- #
3
- # gemsync - Standalone gemsync utility.
4
- #
5
- # Example:
6
- # gemsync --from 1.8.6 -m foo --to 1.9.1 -m bar
7
- #
8
- source ~/.bash_profile # load rvm
9
-
10
- from_string=`echo "$@" | sed 's/--/;/g' | tr ';' "\n" | awk '/from/ {print}' | sed 's/from//'`
11
- to_string=`echo "$@" | sed 's/--/;/g' | tr ';' "\n" | awk '/to/ {print}' | sed 's/to//'`
12
-
13
- if [ -z "$from_string" ] ; then echo "Invalid arguments. Missing --from <ruby selector>" ; exit 1 ; fi
14
- if [ -z "$to_string" ] ; then echo "Invalid arguments. Missing --to <ruby selector>" ; exit 1 ; fi
15
-
16
- # first we use where we want.
17
- rvm $to_string
18
-
19
- # Then we sync from the source.
20
- rvm sync $from_string
21
-