module Vertpig
Constants
- VERSION
Public Class Methods
client()
click to toggle source
# File lib/vertpig.rb, line 16 def self.client @client ||= Client.new(configuration.auth) end
config() { |configuration| ... }
click to toggle source
# File lib/vertpig.rb, line 20 def self.config yield configuration @client = Client.new(configuration.auth) end
configuration()
click to toggle source
# File lib/vertpig.rb, line 25 def self.configuration Configuration.instance end
root()
click to toggle source
# File lib/vertpig.rb, line 29 def self.root File.expand_path('../..', __FILE__) end