heroku_rake_deploy 0.0.2 → 0.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22faf2a47cb101bbc7ad231eb0bf5d10a041976d
4
- data.tar.gz: fc8b755edd9cd1785a98efd621642252bed4045e
3
+ metadata.gz: 2caa76fba845b2da6bcd4b27a0313715f62942af
4
+ data.tar.gz: e572604fd2bbfcb7b678b33da43e2a35b1606665
5
5
  SHA512:
6
- metadata.gz: da088ae5ce9eea3e81035ff6a702e9904d6ec1d93eff1062b03bb45d40fd37ed364f00c19089b20e5001da31fb0f9136c2d05ab26ff6d0ad8c1e8f9e0f8a2b44
7
- data.tar.gz: fdaa7edb8bf2ffbeb4d70867fe7dc1d281a79de8faa17aa51799307bf70934a8333ca0c2d756c9d42ebeba16f94ef591cd6402fdc60ba57203637f7d3847104b
6
+ metadata.gz: 93a1e7d6288a5a2d7bd6a07422479fb8b3b939aa72bade61bbf5f63ffe10f0ae6debaa642f91e578779a4e3cf4a88354d390d99fdcbe7e2f0eefdb4fb6e691ce
7
+ data.tar.gz: 2bc3007159fbcb78954e77da175f755364c0f638870017ff46fb1c7ce76f495836aa9e67c472ce5817bea2e8935bf7ed6fbdb9473b08571338cb9be9add74af5
data/README.md CHANGED
@@ -42,6 +42,10 @@ rake deploy:staging:quick # Quick Deploy to Staging, without running migr
42
42
  ~~~
43
43
 
44
44
 
45
+ ## Dependencies
46
+ The `db:restores` tasks rely on the following gem:
47
+ * https://github.com/ldstudios/heroku_db_restore
48
+
45
49
  ## Contributing
46
50
 
47
51
  Bug reports and pull requests are welcome on GitHub at https://github.com/ldstudios/heroku_rake_deploy.
@@ -1,3 +1,3 @@
1
1
  module HerokuRakeDeploy
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -61,6 +61,7 @@ namespace :deploy do
61
61
  namespace :production do
62
62
  desc 'Quick Deploy to Production, without running migrations.'
63
63
  task :quick do
64
+ env = ENV['ENV']
64
65
  app_name = app_name_from_environment(env)
65
66
  Bundler.with_clean_env do
66
67
  puts `git push origin master`
@@ -73,6 +74,7 @@ namespace :deploy do
73
74
  namespace :staging do
74
75
  desc 'Quick Deploy to Staging, without running migrations.'
75
76
  task :quick do
77
+ env = ENV['ENV']
76
78
  app_name = app_name_from_environment(env)
77
79
  Bundler.with_clean_env do
78
80
  puts `git push origin staging`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_rake_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - nrowegt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-11-24 00:00:00.000000000 Z
12
+ date: 2016-12-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler