heroku-tagged-deploy 0.0.2.2 → 0.0.2.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: 979e942d0ed80366bf68d7aea31808fbcf530e14
4
- data.tar.gz: 8736bb469b627e1e1e676833bc2d8e01594e055d
3
+ metadata.gz: ad7386d042100c2901b8b6bba5c5c06ce2f10370
4
+ data.tar.gz: 6803b72be5914b177f0b397d00e6a77a8736ad56
5
5
  SHA512:
6
- metadata.gz: 45180629a3cd6a9b7cb02fb2b01e5ff2e3e9f4868137d9a4b2a9712886df8496cae2922917d339381ad5a4ba639a14a23bf19d2242efd10f885496a24b493f51
7
- data.tar.gz: 869aa95ff0931eaf4a22f5ea6a07e66bd873472f21e27c119f7141ca4dc92cc84818240eed57bc627d98e7056e6187a7ff4b1f3e57549e8c7931ca099dfcca9c
6
+ metadata.gz: b46ff189142a5bf15e46725eded43ed3281c4c4e335e1136eca00d7eacf56fa970f2184f42d24f858f4ae72fb462c1736a9ea823015bdce7c85a91a4c10292db
7
+ data.tar.gz: 9ab211d52cb87e15a848490bff71da49130ec58024004db7308b74daf87fe42f60416d8d2ab15b07c3201ff84ca785934bedbe5a0cf29263e699a1694d7f7972
@@ -1,6 +1,6 @@
1
1
  module HerokuSan
2
2
  class Configuration
3
- def initialize(configurable, stage_factory = HerokuSan::Stage)
3
+ def initialize_with_tagged(configurable, stage_factory = HerokuSan::Stage)
4
4
  @config_file = configurable.config_file
5
5
  default_options = {
6
6
  deploy: HerokuSan::Deploy::Tagged
@@ -11,5 +11,6 @@ module HerokuSan
11
11
  @options = default_options.merge(configurable.options || {})
12
12
  @stage_factory = stage_factory
13
13
  end
14
+ alias_method :initialize, :initialize_with_tagged
14
15
  end
15
16
  end
@@ -1,7 +1,7 @@
1
1
  module Heroku
2
2
  module Tagged
3
3
  module Deploy
4
- VERSION = "0.0.2.2"
4
+ VERSION = "0.0.2.3"
5
5
  end
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  require File.join(File.dirname(__FILE__), '../../railtie.rb') if defined?(Rails) && Rails::VERSION::MAJOR >= 3
2
2
  require 'heroku_san'
3
3
  require File.join(File.dirname(__FILE__), '../../heroku_san/stage.rb')
4
- require 'rails'
4
+ # require 'rails'
5
5
  require "heroku/tagged/deploy/version"
6
6
  require "heroku/tagged/tagged_deploy"
7
7
  require "heroku/tagged/default_config"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku-tagged-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.2
4
+ version: 0.0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Westerink