I also tried MyLibrary::auth(“username”,“password”)
I am new to Ruby so I am probably missing something obvious. I am
trying to create some code to download xml from a (non-rails) REST API.
You’ve defined auth as an instance method, not a class method. Try
this:
class MyLibrary
def self.auth … etc.
David
–
Rails training from David A. Black and Ruby Power and Light:
ADVANCING WITH RAILS April 14-17 New York City
INTRO TO RAILS June 9-12 Berlin
ADVANCING WITH RAILS June 16-19 Berlin
See http://www.rubypal.com for details and updates!
Thanks for the quick response.
Your suggestion and a server reboot fixed it.
That’s probably something I would understand better if I had payed
more attention in my class on object oriented programming years ago. I
will assume the difference is that class methods can be called without
creating an actual object (or instance of the class). That makes
sense.
Thanks again, I should have asked about 4 hours of head beating ago.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.