heroku_feature_deployments 0.4.1 → 0.5.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4bf3c314ea47250e5ba0bd8b4d4d53c8765a29c
|
|
4
|
+
data.tar.gz: bc269b76e11989532cf58549212e31c341780ac3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9280fdec3907042fcc4dc0e3b58abc6e6eedb2b49022471c3c1f8886b8c744976a2b02ea91e795a9bca2f87fa0cc541341cb8c6f3b12dedee4ee1fff85a3cd2
|
|
7
|
+
data.tar.gz: e2d435eed744625b95889948bfca4ecbb23d907175e7caf1bf7a0ebce27114a1771f5460def1ace2646ab24492b0fe7300a46cf464995a12cf60deea0657936f
|
|
@@ -3,7 +3,7 @@ module HerokuFeatureDeployments
|
|
|
3
3
|
attr_accessor :heroku_api_key, :dnsimple_username, :dnsimple_api_key,
|
|
4
4
|
:addons, :env_vars, :logger, :pivotal_tracker_api_key, :namespace,
|
|
5
5
|
:github_token, :github_repo, :domain, :pivotal_tracker_project_id,
|
|
6
|
-
:heroku_account_name, :collaborators
|
|
6
|
+
:heroku_account_name, :collaborators, :region
|
|
7
7
|
|
|
8
8
|
def logger
|
|
9
9
|
@logger ||= Logger.new(STDOUT)
|
|
@@ -170,7 +170,7 @@ module HerokuFeatureDeployments
|
|
|
170
170
|
|
|
171
171
|
def create_app
|
|
172
172
|
config.logger.info "Creating App #{@full_app_name}"
|
|
173
|
-
heroku.post_app(name: @full_app_name).tap do |response|
|
|
173
|
+
heroku.post_app(name: @full_app_name, region: config.region || 'us').tap do |response|
|
|
174
174
|
run_command add_git_remote(response.body['git_url'])
|
|
175
175
|
end
|
|
176
176
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: heroku_feature_deployments
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Beedle
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: heroku-api
|
|
@@ -124,4 +124,3 @@ signing_key:
|
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: Gem to deploy the current git branch to a new app on heroku
|
|
126
126
|
test_files: []
|
|
127
|
-
has_rdoc:
|