capistrano-helpers 0.6.5 → 0.6.6

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.5
1
+ 0.6.6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{capistrano-helpers}
8
- s.version = "0.6.5"
8
+ s.version = "0.6.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Scott Woods"]
12
- s.date = %q{2011-05-23}
12
+ s.date = %q{2011-07-26}
13
13
  s.description = %q{A set of optional extensions to capistrano to make common tasks easier.}
14
14
  s.email = %q{scott@westarete.com}
15
15
  s.extra_rdoc_files = [
@@ -6,7 +6,7 @@ CapistranoHelpers.with_configuration do
6
6
  desc "Install gems on the remote server using Bundler."
7
7
  task :bundler do
8
8
  run "sudo chown -Rh `whoami` #{shared_path}/vendor/bundler"
9
- run "cd #{current_path} && bundle install --deployment --local --path #{shared_path}/vendor/bundler --without development test"
9
+ run "cd #{release_path} && bundle install --deployment --local --path #{shared_path}/vendor/bundler --without development test"
10
10
  end
11
11
  end
12
12
 
@@ -6,7 +6,7 @@ CapistranoHelpers.with_configuration do
6
6
  desc "Install gems on the remote server."
7
7
  task :install, :roles => :app do
8
8
  rails_env = fetch(:rails_env, "production")
9
- run "cd #{current_release} && #{sudo} rake gems:install RAILS_ENV=#{rails_env}"
9
+ run "cd #{release_path} && #{sudo} rake gems:install RAILS_ENV=#{rails_env}"
10
10
  end
11
11
  end
12
12
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-helpers
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 5
10
- version: 0.6.5
9
+ - 6
10
+ version: 0.6.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Woods
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-23 00:00:00 -04:00
18
+ date: 2011-07-26 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency