Sha256: 7a73076ee31d80ba1f7592246dffa9880cad3575cfda58bf977876acedfc9723

Contents?: true

Size: 641 Bytes

Versions: 135

Compression:

Stored size: 641 Bytes

Contents

require 'faraday'
require 'rendezvous'
require 'netrc'

module DPL
  class Provider
    module Heroku
      autoload :API,          'dpl/provider/heroku/api'
      autoload :Generic,      'dpl/provider/heroku/generic'
      autoload :Git,          'dpl/provider/heroku/git'

      extend self

      def new(context, options)
        strategy = options[:strategy] || 'api'
        constant = constants.detect { |c| c.to_s.downcase == strategy.downcase.gsub(/\W/, '') }
        raise Error, 'unknown strategy %p' % strategy unless constant and constant != Generic
        const_get(constant).new(context, options)
      end
    end
  end
end

Version data entries

135 entries across 135 versions & 1 rubygems

Version Path
dpl-heroku-1.10.2 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.3.travis.3002.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2993.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2992.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2987.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2979.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2976.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.1 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.2.travis.2966.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.1.travis.2957.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.1.travis.2956.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.1.travis.2947.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.0 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.1.travis.2932.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.8 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.9.travis.2894.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.8.travis.2891.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.7 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.8.travis.2863.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.7.travis.2857.6 lib/dpl/provider/heroku.rb