rvm-capistrano 1.0.1 → 1.0.2

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/History.md CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.2 / 2012-03-28
2
+
3
+ * Fix the bundler auto require problem
4
+
1
5
  === 1.0.1 / 2012-03-26
2
6
 
3
7
  * Updated to latest integration code for installing rvm/ruby
@@ -2,6 +2,5 @@
2
2
  - Manifest.yml
3
3
  - README.md
4
4
  - Rakefile
5
- - lib/rvm-capistrano.rb
6
5
  - lib/rvm/capistrano.rb
7
6
  - lib/rvm/capistrano/version.rb
data/README.md CHANGED
@@ -19,12 +19,14 @@ The following code will:
19
19
  - detect `ruby@gemset` used for deployment
20
20
  - install RVM and Ruby on `cap deploy:detup`
21
21
 
22
+ Example:
23
+
22
24
  set :rvm_ruby_string, ENV['GEM_HOME'].gsub(/.*\//,"")
23
25
 
24
26
  before 'deploy:setup', 'rvm:install_rvm'
25
27
  before 'deploy:setup', 'rvm:install_ruby'
26
28
 
27
- require "rvm-capistrano"
29
+ require "rvm/capistrano"
28
30
 
29
31
 
30
32
  ## Development
@@ -1,5 +1,5 @@
1
1
  module RVM
2
2
  class Capistrano
3
- VERSION="1.0.1"
3
+ VERSION="1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,22 +1,22 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm-capistrano
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wayne E. Seguin
14
- - "Micha\xC5\x82 Papis"
14
+ - Michal Papis
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-03-26 00:00:00 Z
19
+ date: 2012-03-28 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: capistrano
@@ -77,7 +77,6 @@ files:
77
77
  - Manifest.yml
78
78
  - README.md
79
79
  - Rakefile
80
- - lib/rvm-capistrano.rb
81
80
  - lib/rvm/capistrano.rb
82
81
  - lib/rvm/capistrano/version.rb
83
82
  - spec/spec_helper.rb
@@ -1 +0,0 @@
1
- require 'rvm/capistrano'