module Finnegans

Constants

DEFAULT_USER_AGENT
VERSION

Public Class Methods

api_catalog_path() click to toggle source
# File lib/finnegans.rb, line 35
def api_catalog_path
  @@api_catalog_path
end
api_catalog_path=(value) click to toggle source
# File lib/finnegans.rb, line 46
def api_catalog_path=(value)
  value = value.to_s
  @@api_catalog_path = (value.empty? ? nil : value)
end
resources_namespace() click to toggle source
# File lib/finnegans.rb, line 38
def resources_namespace
  @@resources_namespace
end
resources_namespace=(value) click to toggle source
# File lib/finnegans.rb, line 50
def resources_namespace=(value)
  value = value.to_s
  @@resources_namespace = (value.empty? ? nil : value)
end
setup() { |self| ... } click to toggle source
# File lib/finnegans.rb, line 42
def setup
  yield self
end