Method: DPL::Provider::Scalingo#initialize
- Defined in:
- lib/dpl/provider/scalingo.rb
#initialize(context, options) ⇒ Scalingo
Returns a new instance of Scalingo.
24 25 26 27 28 29 30 31 32 |
# File 'lib/dpl/provider/scalingo.rb', line 24 def initialize(context, ) super @options = @remote = [:remote] || 'scalingo-dpl' @branch = [:branch] || 'master' @region = [:region] || 'agora-fr1' @timeout = [:timeout] || '60' @debug = ![:debug].nil? end |