Module: Ugigi

Defined in:
lib/ugigi.rb,
lib/ugigi/parser.rb,
lib/ugigi/scheme.rb,
lib/ugigi/version.rb

Defined Under Namespace

Classes: Index, Parser, Scheme

Constant Summary collapse

BASE_URL =
"http://ugigi.dvrdns.org/api/search/list.json"
BASE_URL_NOAPI =
"http://ugigi.dvrdns.org/search"
VERSION =
"0.3.2"

Class Method Summary collapse

Class Method Details

.search(args = {}) ⇒ Object



30
31
32
33
# File 'lib/ugigi.rb', line 30

def self.search(args={})
  parser = Parser.new
  parser.fetch(args)
end

.total_count(args) ⇒ Object



35
36
37
38
# File 'lib/ugigi.rb', line 35

def self.total_count(args)
  parser = Parser.new
  parser.total_count(args)
end