module Wrake

Constants

VERSION

Public Class Methods

api() click to toggle source
# File lib/wrake.rb, line 16
def self.api
  @@api ||= Api.new(
    url: config.url,
    username: config.username,
    password: config.password
  )
end
config() click to toggle source
# File lib/wrake.rb, line 8
def self.config
  @@config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/wrake.rb, line 12
def self.configure(&block)
  yield config
end