Class/Module Index [+]

Quicksearch

Github::AutoloadHelper

Public Instance Methods

autoload_all(prefix, options) click to toggle source
# File lib/github_api.rb, line 38
def autoload_all(prefix, options)
  options.each do |const_name, path|
    autoload const_name, File.join(prefix, path)
  end
end
lookup_constant(const_name) click to toggle source
# File lib/github_api.rb, line 50
def lookup_constant(const_name)
  const_get const_name.upcase.to_s
end
register_constant(options) click to toggle source
# File lib/github_api.rb, line 44
def register_constant(options)
  options.each do |const_name, value|
    const_set const_name.upcase.to_s, value
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.