Methods
A
G
S
Instance Public methods
alwaysFail()
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 157
def alwaysFail
  raise "Blogger AlwaysFail"
end
getCategories()
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 146
def getCategories
  ["bloggerCat1", "bloggerCat2"]
end
str(int)
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 150
def str(int)
  unless int.is_a?(Integer)
    raise "Not an integer!"
  end
  500 + int
end