bard 0.8.12 → 0.8.13

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.12
1
+ 0.8.13
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bard}
8
- s.version = "0.8.12"
8
+ s.version = "0.8.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Micah Geisel", "Nick Hogle"]
@@ -103,7 +103,8 @@ class Bard < Thor
103
103
  ensure_sanity!
104
104
 
105
105
  run_crucial "git fetch"
106
- run_crucial "git reset --hard origin/integration"
106
+ run_crucial "git checkout master && git reset --hard origin master"
107
+ run_crucial "git checkout integration && reset --hard origin integration"
107
108
  run_crucial "rake bootstrap RAILS_ENV=staging"
108
109
  end
109
110
 
@@ -29,7 +29,7 @@ Capistrano::Configuration.instance(:must_exist).load do
29
29
  desc "push app from staging to production"
30
30
  task :deploy, :roles => :production do
31
31
  system "git push github" if `git remote` =~ /\bgithub\b/
32
- run "cd #{application} && git pull origin/master && rake bootstrap:production"
32
+ run "cd #{application} && git pull origin master && rake bootstrap:production"
33
33
  puts "Deploy Succeeded"
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.12
4
+ version: 0.8.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel