rvm-capistrano 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.md CHANGED
@@ -1,3 +1,25 @@
1
+ ### 1.3.1 / 2013-06-10
2
+
3
+ * prefix sg with sudo, fix #69
4
+ * documentation / spelling fixes
5
+
6
+ ### 1.3.0 / 2013-04-12
7
+
8
+ * Silence curl progress when fetching libyaml, Ruby, etc. during rvm:install_ruby, closes #33
9
+ * Fix concurrency issue when running on shared home directory, merge #39
10
+ * Add support for rvm pkg install, gemset import/export, closes #40
11
+ * Make sure deploying user is added to rvm group, fix #43
12
+ * Fix retun status of silent curl, fix #37
13
+ * Allow restricting rvm tasks to given roles, closes #42
14
+ * Fix rvm_install_ruby_threads when there is no /proc/cpuinfo, fix #46
15
+ * Default :rvm_install_pkgs to [], fix #44
16
+ * Improved checking if capistrano was loaded, fix #30
17
+ * Fix parameters ordering for creating gemsets, fix #49
18
+ * Allow setting :local ruby string to read version/gemset from GEM_HOME, fix #50
19
+ * Defer setting rvm_shell and default_shell, fix #51
20
+ * Improved error messages
21
+ * Improved documentation
22
+
1
23
  ### 1.2.7 / 2012-09-09
2
24
 
3
25
  * add rvm:(un)install_gem, merged #32
@@ -28,14 +50,14 @@
28
50
  * Add `set :rvm_ruby_string, :local`, merged #4
29
51
  * Fix `command_install` edge cases, merged #12, closes #13
30
52
 
31
- ## 1.2.0 / 2012-05-19
53
+ ### 1.2.0 / 2012-05-19
32
54
 
33
55
  * Add task to create gemset, fix #8
34
56
  * Add `rvm_install_ruby_params`, fix #9
35
57
  * Improved installing RVM with sudo, fix #10
36
58
  * Use the new RVM installer
37
59
 
38
- ## 1.1.0 / 2012-04-29
60
+ ### 1.1.0 / 2012-04-29
39
61
 
40
62
  * Fix rvm installation task to use sudo and `rvm_path` when needed
41
63
 
@@ -50,7 +72,7 @@
50
72
  * Switch the default rvm installation type to user - as we discourage system installations
51
73
  * Improved README.md
52
74
 
53
- # 1.0.0 / 2012-03-26
75
+ ### 1.0.0 / 2012-03-26
54
76
 
55
77
  * Ported RVM /Capistrano Gem Library into it's own repository from the main RVM
56
78
  repostitory. ( https://github.com/wayneeseguin/rvm-capistrano )
data/README.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  RVM / Capistrano Integration Gem
6
6
 
7
+ ## Compatibility
8
+
9
+ `rvm-capistrano` `1.3.0` with Autolibs requires at least RVM `1.19.0`.
10
+
7
11
  ## Installation
8
12
 
9
13
  RVM / Capistrano integration is available as a separate gem
@@ -140,7 +140,7 @@ module Capistrano
140
140
  def with_rvm_group(command)
141
141
  case rvm_type
142
142
  when :root, :system
143
- "sg rvm -c \"#{command}\""
143
+ "#{sudo} sg rvm -c \"#{command}\""
144
144
  else
145
145
  command
146
146
  end
@@ -1,5 +1,5 @@
1
1
  module RVM
2
2
  class Capistrano
3
- VERSION="1.3.0"
3
+ VERSION="1.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm-capistrano
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 0
10
- version: 1.3.0
9
+ - 1
10
+ version: 1.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wayne E. Seguin
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2013-04-12 00:00:00 +02:00
19
+ date: 2013-06-10 00:00:00 +02:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -83,7 +83,7 @@ files:
83
83
  - lib/rvm/capistrano/version.rb
84
84
  - spec/spec_helper.rb
85
85
  has_rdoc: true
86
- homepage: https://rvm.beginrescueend.com/integration/capistrano
86
+ homepage: https://github.com/wayneeseguin/rvm-capistrano
87
87
  licenses:
88
88
  - MIT
89
89
  post_install_message: