module Jenkinson

Constants

Hub
VERSION

Public Class Methods

config() click to toggle source
# File lib/jenkinson.rb, line 11
def self.config
  @@config ||= {
    'server_url' => ENV['JENKINSON_URL'] || "localhost",
    'username' => ENV['JENKINSON_USER'],
    'password' => ENV['JENKINSON_PASSWORD']
  }
end
configure() { |config| ... } click to toggle source
# File lib/jenkinson.rb, line 7
def self.configure(&block)
  yield(config)
end