heroku_builder 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d004817b02f37030dab30bc7f9b2029dae7f4d7b
4
- data.tar.gz: b0d847744d4b20260b62fecdb011da9209379570
3
+ metadata.gz: 56df67665e9a0be68a9a25d0afb6ecaf09000841
4
+ data.tar.gz: b4b88f8c79a2f8292f6fbc4e49bc6b83f44e7c66
5
5
  SHA512:
6
- metadata.gz: d866d9513ddbba65b69d0ed05cbf5b7bf5c441d1016b2d8a74433d8d3d37f104bdac9137bdcf7c148570222aa05032e6680ab4b76491f65fe12fdb4ab7e6fa20
7
- data.tar.gz: 037c8db383f2090eaec55d2caa460e96d0f5b464e73f8409f448c88f66c4346e998f4f8e1607a36806adac9550c2fbd282076c44e20a41257e8fcd40c0ab6fa2
6
+ metadata.gz: e887330fe7c8b0562314367d2837f56ff3c2264bf0fd814bf1b4b31d4b917c5166373233a5d68416cf6db893feb7c8bfffe5f2ca639c5a6332dbc1ad72551935
7
+ data.tar.gz: ed5036a1c3d60514a4bee40d916f24630096ffc6532d10e1fbb8d85f3d3082c553f48ba2d6f31ffd3c1f48912ff9cbf14b2b62280e93b771e7fffe0d1065e56a
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
7
7
  spec.name = 'heroku_builder'
8
8
  spec.version = HerokuBuilder::VERSION
9
9
  spec.authors = ['Jason Vanderhoof']
10
- spec.email = ['jvanderhoof (at) google mail']
10
+ spec.email = ['jvanderhoof (at) google email']
11
11
 
12
12
  spec.summary = %q{Generate and manage multi-environment Heroku application and simple deployment.}
13
13
  spec.description = %q{Heroku Builder allows for straight forward configuration of your multi (or single) stage Heroku application as well as dead simple deployment. It uses a YAML configuration to manage a multi-environment configuration, including: configuration variables, resources, add-ons, and git based deployment.}
14
- spec.homepage = 'https://github.com/jvanderhoof/heroku_builder.'
14
+ spec.homepage = 'https://github.com/jvanderhoof/heroku_builder'
15
15
  spec.license = 'MIT'
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.bindir = 'exe'
27
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ['lib']
29
+ spec.required_ruby_version = '>= 1.9.3'
29
30
 
30
31
  spec.add_runtime_dependency 'platform-api', '~> 0.3.0'
31
32
  spec.add_runtime_dependency 'hashdiff', '~> 0.2.2'
@@ -10,7 +10,7 @@ module HerokuBuilder
10
10
  if remote_exists?(remote_branch)
11
11
  git.add_remote(remote_branch, App.new.app(name)['git_url'])
12
12
  end
13
- git.push(remote_branch, "#{branch}:master")
13
+ git.push(remote_branch, "#{branch}:master", force: true)
14
14
  end
15
15
 
16
16
  def git
@@ -1,3 +1,3 @@
1
1
  module HerokuBuilder
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Vanderhoof
@@ -99,7 +99,7 @@ description: 'Heroku Builder allows for straight forward configuration of your m
99
99
  a YAML configuration to manage a multi-environment configuration, including: configuration
100
100
  variables, resources, add-ons, and git based deployment.'
101
101
  email:
102
- - jvanderhoof (at) google mail
102
+ - jvanderhoof (at) google email
103
103
  executables: []
104
104
  extensions: []
105
105
  extra_rdoc_files: []
@@ -126,7 +126,7 @@ files:
126
126
  - lib/heroku_builder/version.rb
127
127
  - lib/railtie.rb
128
128
  - lib/tasks/heroku_builder.rake
129
- homepage: https://github.com/jvanderhoof/heroku_builder.
129
+ homepage: https://github.com/jvanderhoof/heroku_builder
130
130
  licenses:
131
131
  - MIT
132
132
  metadata:
@@ -139,7 +139,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
139
139
  requirements:
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: '0'
142
+ version: 1.9.3
143
143
  required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
145
  - - ">="
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
147
  version: '0'
148
148
  requirements: []
149
149
  rubyforge_project:
150
- rubygems_version: 2.4.5.1
150
+ rubygems_version: 2.4.6
151
151
  signing_key:
152
152
  specification_version: 4
153
153
  summary: Generate and manage multi-environment Heroku application and simple deployment.