thunder_punch 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.mdown CHANGED
@@ -1,4 +1,4 @@
1
- == 0.0.9 (September 1, 2010)
1
+ == 0.0.9 (September 7, 2010)
2
2
 
3
3
  * Fix role on database tasks - was :database, should be :db to fit conventions
4
4
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.9
1
+ 0.0.10
@@ -3,7 +3,9 @@ Capistrano::Configuration.instance(:must_exist).load do
3
3
  namespace :bundler do
4
4
  desc "Install and lock bundle"
5
5
  task :fix_bundle, :roles => [:app, :worker] do
6
- run "cd #{current_path} && bundle install"
6
+ _cset(:gem_file_groups) { [:development, :production] }
7
+ excluded_groups = gem_file_groups.reject{|e| e == rails_env.to_sym}.each{|g| g.to_s}.join(' ')
8
+ run "cd #{current_path} && bundle install --deployment --without #{excluded_groups}"
7
9
  end
8
10
  end
9
11
 
@@ -12,7 +12,7 @@ Capistrano::Configuration.instance(:must_exist).load do
12
12
 
13
13
  desc "Setup a GitHub-style deployment."
14
14
  task :setup, :roles => [:app, :static, :worker], :except => { :no_release => true } do
15
- run "git clone #{repository} #{current_path}"
15
+ run "cd #{deploy_to} && git clone #{repository} #{current_path}"
16
16
  end
17
17
 
18
18
  task :update do
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{thunder_punch}
8
- s.version = "0.0.9"
8
+ s.version = "0.0.10"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bob Burbach"]
12
- s.date = %q{2010-09-07}
12
+ s.date = %q{2010-09-09}
13
13
  s.description = %q{Collection of capistano recipes for deployment and server tasks}
14
14
  s.email = %q{info@criticaljuncture.org}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 9
9
- version: 0.0.9
8
+ - 10
9
+ version: 0.0.10
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bob Burbach
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-09-07 00:00:00 -07:00
17
+ date: 2010-09-09 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency