Sha256: 7b3caa61deedaec49693af6a8e275fd3233e274cdeeda20dc8c6732124be178a
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module Rundeck # Defines constants and methods related to configuration. module Configuration # An array of valid keys in the options hash when configuring a Rundeck::API. VALID_OPTIONS_KEYS = [:endpoint, :api_token, :user_agent].freeze # The user agent that will be sent to the API endpoint if none is set. DEFAULT_USER_AGENT = "Rundeck Ruby Gem #{Rundeck::VERSION}".freeze # @private attr_accessor(*VALID_OPTIONS_KEYS) # Sets all configuration options to their default values # when this module is extended. def self.extended(base) base.reset end # Convenience method to allow configuration options to be set in a block. def configure yield self end # Creates a hash of options and their values. def options VALID_OPTIONS_KEYS.reduce({}) do |option, key| option.merge!(key => send(key)) end end def endpoint=(endpoint) @endpoint = "#{endpoint}/api/12" end # Resets all configuration options to the defaults. def reset self.endpoint = ENV['RUNDECK_ENDPOINT'] self.api_token = ENV['RUNDECK_API_TOKEN'] self.user_agent = DEFAULT_USER_AGENT end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rundeck-0.0.3.pre | lib/rundeck/configuration.rb |