heroku_deploy 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.11
1
+ 0.0.12
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{heroku_deploy}
8
- s.version = "0.0.11"
8
+ s.version = "0.0.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ross Hale", "Chris Lemcke"]
@@ -67,7 +67,7 @@ class HerokuDeploy
67
67
  heroku_deploy.backup( staging_app )
68
68
 
69
69
  puts "Deploying to Staging"
70
- merge( "master", "staging" )
70
+ heroku_deploy.merge( "master", "staging" )
71
71
 
72
72
  heroku_deploy.push_to 'staging', staging_app
73
73
  puts ""
@@ -81,7 +81,7 @@ class HerokuDeploy
81
81
  heroku_deploy.backup( production_app )
82
82
 
83
83
  puts "Deploying to Production"
84
- merge( "staging", "production" )
84
+ heroku_deploy.merge( "staging", "production" )
85
85
 
86
86
  heroku_deploy.push_to 'production', production_app
87
87
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_deploy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 11
10
- version: 0.0.11
9
+ - 12
10
+ version: 0.0.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ross Hale