module HerokuAutoScale::Configuration

Constants

CONFIGURATION_OPTIONS

Public Instance Methods

configure() { |self| ... } click to toggle source
# File lib/heroku_auto_scale/configuration.rb, line 11
def configure
  yield self
end
options() click to toggle source
# File lib/heroku_auto_scale/configuration.rb, line 15
def options
  CONFIGURATION_OPTIONS.inject({}) do |option, key|
    option.merge!(key => send(key))
  end
end