module Shilling
Constants
- VERSION
Public Class Methods
config()
click to toggle source
# File lib/shilling.rb, line 105 def self.config @config ||= Configuration.new end
configure() { |config| ... }
click to toggle source
lets you use
Shilling.configure do |config| config.address = 'Sepp' end
# File lib/shilling.rb, line 101 def self.configure yield( config ) end
main()
click to toggle source
add command line binary (tool) e.g. $ try shilling -h
# File lib/shilling.rb, line 111 def self.main Tool.new.run(ARGV) end
root()
click to toggle source
# File lib/shilling/version.rb, line 7 def self.root "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}" end