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.9.7.travis.2853.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.7.travis.2851.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2848.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2837.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2827.6 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2795.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2794.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2790.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2786.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.6.travis.2785.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.5.travis.2783.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.5.travis.2781.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.5.travis.2782.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.5.travis.2775.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.4.travis.2773.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.4 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.4.travis.2768.5 lib/dpl/provider/heroku.rb
dpl-heroku-1.9.4.travis.2766.5 lib/dpl/provider/heroku.rb