heroku_rails_deploy 0.4.0 → 0.4.1

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: 76fdb7ce56c4b608dc6a20fbe5b5d0365c78077d
4
- data.tar.gz: fe49e91d7cfe0e6b369222af50875b5000942829
3
+ metadata.gz: 5388150cdc34b72f352999a51c99276a277cd373
4
+ data.tar.gz: 876cba93797fdc75d2dd0fe2051f2d0a88298076
5
5
  SHA512:
6
- metadata.gz: c1ae3cb3a77b546ca6948f1642199a67d4096451536de3d308ee6c89b2c02a3b35071036376f6aabb9e48593e57f9da41eae5f4acda6cf04977225df1e37c20b
7
- data.tar.gz: '0897273389af5010d6a849d58815f246f99029ebb63b441fc9be11d68088f6d01504298da3bb65dcb9159399abe518e551d63506579691c6bbc7645895a9b2bd'
6
+ metadata.gz: a10e01f2be30379fc1aad66c3e4b670fc04d7b03895bda1a32666593c576ee52d7a593666718a2e8f23c9ec35b566fd676cdd0c5dfa05b9832d8771c8dac8e76
7
+ data.tar.gz: 0d373e88a64ef7619a052fdd8bf30282035e225ca277f4728088048a0a2d07cfa9ee882dd2af11856e5d2481170796b364c984494160db27668f46abcd8d0a10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # heroku_rails_deploy
2
2
 
3
+ ## v0.4.1
4
+ - Fix bug checking environment.
5
+
3
6
  ## v0.4.0
4
7
  - Refactor to expose environment from `Deployer`.
5
8
 
@@ -36,7 +36,7 @@ module HerokuRailsDeploy
36
36
  "Must be in #{app_registry.keys.join(', ')}")
37
37
  end
38
38
 
39
- raise 'Only master, release or hotfix branches can be deployed to production' if production?(options) && !production_branch?(options.revision)
39
+ raise 'Only master, release or hotfix branches can be deployed to production' if production? && !production_branch?(options.revision)
40
40
 
41
41
  no_uncommitted_changes!
42
42
 
@@ -1,3 +1,3 @@
1
1
  module HerokuRailsDeploy
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_rails_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc