rvm 1.11.3.7 → 1.11.3.8

Sign up to get free protection for your applications and to get access to all the features.
data/History.md CHANGED
@@ -1,3 +1,15 @@
1
+ # 1.11.3.8 / 2013-05-29
2
+
3
+ * correctly refers to :rvm_path config, merged #13
4
+
5
+ # 1.11.3.7 / 2013-03-31
6
+
7
+ * add return value to RVM.use, merged #12
8
+
9
+ # 1.11.3.6 / 2013-01-24
10
+
11
+ * Add :rvm_by_path option to #rvm method to invoke rvm with full path, merged #11
12
+
1
13
  # 1.11.3.5 / 2012-07-02
2
14
 
3
15
  * fix gemset use, fix #5, merged #9
@@ -66,7 +66,8 @@ module RVM
66
66
  args += hash_to_options(options)
67
67
  args.map! { |a| a.to_s }
68
68
 
69
- program = rvm_by_path ? "#{self.class.default_rvm_path}/bin/rvm" : "rvm"
69
+ rvm_path = config_value_for(:rvm_path, self.class.default_rvm_path, false)
70
+ program = rvm_by_path ? "#{rvm_path}/bin/rvm" : "rvm"
70
71
  if silent
71
72
  run_silently(program, *args)
72
73
  else
@@ -1,3 +1,3 @@
1
1
  module RVM
2
- Version = "1.11.3.7"
2
+ Version = "1.11.3.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 11
9
9
  - 3
10
- - 7
11
- version: 1.11.3.7
10
+ - 8
11
+ version: 1.11.3.8
12
12
  platform: ruby
13
13
  authors:
14
14
  - Wayne E. Seguin
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2013-03-30 23:00:00 +01:00
20
+ date: 2013-05-30 00:00:00 +02:00
21
21
  default_executable:
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency