From: "R. Kumar" Date: 2010-04-29T17:37:49+09:00 Subject: Re: Posting to Tumblr with Ruby David Turnbull wrote: > request = Tumblr.new(username, password).post(document) > request.perform do |response| > if response.success? > puts response.body # Returns the new post's id. > else > puts "Something went wrong: #{response.code} > #{response.message}" > end > end > > Would appreciate any direction you could give me. :-) Are you only wanting to include this code in your client ? I am not clear on what you wish to do. From what i can see, 1. document will be a text field containing what the user wishes to post. So you've already accepted username, password and document from user. 2. Most likely you would not want to print (puts) the error or response onto the terminal since you are in macruby. You can make a method of this and return the id, or return the success or failure boolean and store id and message in some instance of the class. Then you would display the id to the user with success message, or store it in some log file along with message or error message. I am sorry i don't know macruby so can't help you on what to do on that end. -- Posted via http://www.ruby-forum.com/.