Methods
- A
- G
- S
Instance Public methods
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 157 def alwaysFail raise "Blogger AlwaysFail" end
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 146 def getCategories ["bloggerCat1", "bloggerCat2"] end
Source: show
# 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