capistrano-ext-rvm 0.0.1 → 0.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.
@@ -6,3 +6,8 @@
6
6
  == 0.0.1 (November 14, 2011)
7
7
 
8
8
  * add 'cap rvm:gemset:create'
9
+
10
+ == 0.0.2 (November 14, 2011)
11
+
12
+ * update Manifest
13
+ * add description to task
data/Manifest CHANGED
@@ -1,7 +1,7 @@
1
1
  CHANGELOG.rdoc
2
2
  MIT-LICENSE
3
+ Manifest
3
4
  README
4
5
  Rakefile
5
6
  lib/capistrano/ext/rvm.rb
6
7
  lib/capistrano/ext/version.rb
7
- Manifest
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{capistrano-ext-rvm}
5
- s.version = "0.0.1"
5
+ s.version = "0.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{Marcin Nowicki}]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Capistrano recipes to support RVM installations}
11
11
  s.email = %q{pr0d1r2@gmail.com}
12
12
  s.extra_rdoc_files = [%q{CHANGELOG.rdoc}, %q{README}, %q{lib/capistrano/ext/rvm.rb}, %q{lib/capistrano/ext/version.rb}]
13
- s.files = [%q{CHANGELOG.rdoc}, %q{MIT-LICENSE}, %q{README}, %q{Rakefile}, %q{lib/capistrano/ext/rvm.rb}, %q{lib/capistrano/ext/version.rb}, %q{Manifest}, %q{capistrano-ext-rvm.gemspec}]
13
+ s.files = [%q{CHANGELOG.rdoc}, %q{MIT-LICENSE}, %q{Manifest}, %q{README}, %q{Rakefile}, %q{lib/capistrano/ext/rvm.rb}, %q{lib/capistrano/ext/version.rb}, %q{capistrano-ext-rvm.gemspec}]
14
14
  s.homepage = %q{https://github.com/doubledrones/capistrano-ext-rvm}
15
15
  s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Capistrano-ext-rvm}, %q{--main}, %q{README}]
16
16
  s.require_paths = [%q{lib}]
@@ -2,11 +2,10 @@ Capistrano::Configuration.instance.load do
2
2
 
3
3
  namespace :rvm do
4
4
  namespace :gemset do
5
-
5
+ desc "create RVM gemset"
6
6
  task :create, :roles => :app, :except => { :no_release => true } do
7
7
  run "rvm gemset create '#{rvm_gemset}'"
8
8
  end
9
-
10
9
  end
11
10
  end
12
11
 
@@ -4,7 +4,7 @@ module Capistrano
4
4
  module Version #:nodoc:
5
5
  MAJOR = 0
6
6
  MINOR = 0
7
- TINY = 1
7
+ TINY = 2
8
8
 
9
9
  STRING = [MAJOR, MINOR, TINY].join(".")
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-ext-rvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-11-14 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
16
- requirement: &70364748732640 !ruby/object:Gem::Requirement
16
+ requirement: &70315688247460 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 1.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70364748732640
24
+ version_requirements: *70315688247460
25
25
  description: Capistrano recipes to support RVM installations
26
26
  email: pr0d1r2@gmail.com
27
27
  executables: []
@@ -34,11 +34,11 @@ extra_rdoc_files:
34
34
  files:
35
35
  - CHANGELOG.rdoc
36
36
  - MIT-LICENSE
37
+ - Manifest
37
38
  - README
38
39
  - Rakefile
39
40
  - lib/capistrano/ext/rvm.rb
40
41
  - lib/capistrano/ext/version.rb
41
- - Manifest
42
42
  - capistrano-ext-rvm.gemspec
43
43
  homepage: https://github.com/doubledrones/capistrano-ext-rvm
44
44
  licenses: []