Displaying 1 result from an estimated 1 matches for "res_messag".
Did you mean:
res_message
2007 Oct 18
2
Class works on Ruby, does not work on Rails controller.
Dear All,
I have written a ruby class which uses the flickr webservice. When I
wrote a "command line" sript using that class the I get a proper
response (through res_message). But when I use the class in a
controller I get nil as the response
any help will be highly appreciated.
thanks.
J
--------------------------------------
class is like this.
class FlickrClient
def initialize(key)
@key = key
end
def query(text)
payload = compile_que...