falcon-deploy 0.1.2 → 0.1.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: f1891395cf65fc57348afe4b69cf9ec671f54c33
4
- data.tar.gz: 1e3e1362b4bd0729e76871e137fdee4ac6df7c5c
3
+ metadata.gz: 08dd23b81b2bfaf4b7ef90f0e67962cd3ad0c651
4
+ data.tar.gz: a29d90c8812135569f79091bd659cec292b03090
5
5
  SHA512:
6
- metadata.gz: 933dd6702e3653802938882eb40c95b203133c3094c4aab92299c48cfd382dac426f73e6f45f536130e96f2edfb94f02ef8a4d5db427d27c2cad90d1e4c7b015
7
- data.tar.gz: e1f3d11f615f9cf6ad2525957820999da9c7676b6f200d04b9ccc73c8376bbd1d235624b0bf17af5cca01d8e586815c460d70ebeb9f11551fbad1df944a22f09
6
+ metadata.gz: 48e61e9b64801922cc13150e4ef335fad1600c6d76c88f81e7fc4f36b790b4093cd88ed6ebfac5983d5bcb564a9951c37e8b021c32c0614fb3713c4d101526a8
7
+ data.tar.gz: 3a2f2e2ea63f223d9ee04461b0ed452b60e1bbd0d2ef0c62bae5192c9323a5e67bacaf73cfb02f0bd131556696944cebba0eae00af3f0b51267484d0558ccefc
@@ -1,3 +1,3 @@
1
1
  module Falcon
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -30,7 +30,7 @@ class HerokuDeployer
30
30
 
31
31
  def restart
32
32
  puts 'Restarting app servers ...'
33
- Bundler.with_clean_env { run_and_log(`heroku restart --app #{@app}`) }
33
+ run_and_log(`heroku restart --app #{@app}`)
34
34
  end
35
35
 
36
36
  def tag
@@ -42,17 +42,17 @@ class HerokuDeployer
42
42
 
43
43
  def migrate
44
44
  puts 'Running database migrations ...'
45
- Bundler.with_clean_env { run_and_log(`heroku run 'bundle exec rake db:migrate' --app #{@app}`) }
45
+ run_and_log(`heroku run 'bundle exec rake db:migrate' --app #{@app}`)
46
46
  end
47
47
 
48
48
  def turn_app_off
49
49
  puts 'Putting the app into maintenance mode ...'
50
- Bundler.with_clean_env { run_and_log(`heroku maintenance:on --app #{@app}`) }
50
+ run_and_log(`heroku maintenance:on --app #{@app}`)
51
51
  end
52
52
 
53
53
  def turn_app_on
54
54
  puts 'Taking the app out of maintenance mode ...'
55
- Bundler.with_clean_env { puts `heroku maintenance:off --app #{@app}` }
55
+ puts `heroku maintenance:off --app #{@app}`
56
56
  end
57
57
 
58
58
  def push_previous
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: falcon-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sasha Klein
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-05 00:00:00.000000000 Z
11
+ date: 2015-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler