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.17.travis.6637.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.16 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.16.travis.6625.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.16.travis.6619.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.16.travis.5961.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.15 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.15.travis.5877.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.14 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.13 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.13.travis.4159.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.13.travis.4141.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.13.travis.4040.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.13.travis.4033.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.12 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.12.travis.4032.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.12.travis.3794.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.12.travis.3506.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.11.travis.3504.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.11 lib/dpl/provider/heroku.rb
dpl-heroku-1.10.11.travis.3499.5 lib/dpl/provider/heroku.rb