capistrano-ext-rvm-bundler 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -9,3 +9,8 @@
9
9
  * add 'cap bundler:install'
10
10
  * add 'cap bundle:install'
11
11
  * add 'cap bundle:reset'
12
+
13
+ == 0.0.2 (November 14, 2011)
14
+
15
+ * update Manifest file
16
+ * run tasks only on application servers
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-bundler.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-bundler}
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 with bundler}
11
11
  s.email = %q{pr0d1r2@gmail.com}
12
12
  s.extra_rdoc_files = [%q{CHANGELOG.rdoc}, %q{README}, %q{lib/capistrano/ext/rvm-bundler.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-bundler.rb}, %q{lib/capistrano/ext/version.rb}, %q{Manifest}, %q{capistrano-ext-rvm-bundler.gemspec}]
13
+ s.files = [%q{CHANGELOG.rdoc}, %q{MIT-LICENSE}, %q{Manifest}, %q{README}, %q{Rakefile}, %q{lib/capistrano/ext/rvm-bundler.rb}, %q{lib/capistrano/ext/version.rb}, %q{capistrano-ext-rvm-bundler.gemspec}]
14
14
  s.homepage = %q{https://github.com/doubledrones/capistrano-ext-rvm-bundler}
15
15
  s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Capistrano-ext-rvm-bundler}, %q{--main}, %q{README}]
16
16
  s.require_paths = [%q{lib}]
@@ -4,26 +4,26 @@ Capistrano::Configuration.instance.load do
4
4
 
5
5
  namespace :rubygems do
6
6
  desc "update rubygems in RVM environment"
7
- task :update do
7
+ task :update, :roles => :app, :except => { :no_release => true } do
8
8
  run "rvm '#{rvm_ruby_string}' && gem update --system"
9
9
  end
10
10
  end
11
11
 
12
12
  namespace :bundler do
13
13
  desc "install bundler gem in RVM environment"
14
- task :install do
14
+ task :install, :roles => :app, :except => { :no_release => true } do
15
15
  run "rvm '#{rvm_ruby_string}' && gem install bundler"
16
16
  end
17
17
  end
18
18
 
19
19
  namespace :bundle do
20
20
  desc "install bundle in RVM environment"
21
- task :install do
21
+ task :install, :roles => :app, :except => { :no_release => true } do
22
22
  run "cd #{latest_release} && rvm '#{rvm_ruby_string}' && bundle install --gemfile #{latest_release}/Gemfile --quiet --without development test"
23
23
  end
24
24
 
25
25
  desc "reset bundle in RVM environment"
26
- task :reset do
26
+ task :reset, :roles => :app, :except => { :no_release => true } do
27
27
  run "cd #{current_path} && rvm '#{rvm_ruby_string}' && rm -f Gemfile.lock && rm -rf `rvm gemdir` && gem install bundler && bundle install --gemfile #{current_path}/Gemfile --without development test"
28
28
  end
29
29
  end
@@ -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-bundler
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: &70212822948840 !ruby/object:Gem::Requirement
16
+ requirement: &70138466329120 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 1.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70212822948840
24
+ version_requirements: *70138466329120
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: capistrano-ext-rvm
27
- requirement: &70212822948080 !ruby/object:Gem::Requirement
27
+ requirement: &70138466328280 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: 0.0.1
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70212822948080
35
+ version_requirements: *70138466328280
36
36
  description: Capistrano recipes to support RVM installations with bundler
37
37
  email: pr0d1r2@gmail.com
38
38
  executables: []
@@ -45,11 +45,11 @@ extra_rdoc_files:
45
45
  files:
46
46
  - CHANGELOG.rdoc
47
47
  - MIT-LICENSE
48
+ - Manifest
48
49
  - README
49
50
  - Rakefile
50
51
  - lib/capistrano/ext/rvm-bundler.rb
51
52
  - lib/capistrano/ext/version.rb
52
- - Manifest
53
53
  - capistrano-ext-rvm-bundler.gemspec
54
54
  homepage: https://github.com/doubledrones/capistrano-ext-rvm-bundler
55
55
  licenses: []