Yesterday I looked at the Request side of RestClient so I’m reading through the RestClient::Response class today. RestClient::Request#execute returns this response object from it’s #process_result. 1 response = Response.new(Request.decode(res['content-encoding'], res.body), res, args)response = Response.new(Request.decode(res['content-encoding'], res.body), res, args) The Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 …
Category: Articles
Redmine Commercial Support
I’ve been privately providing commercial support for several of my client’s Redmine systems for over two years now. I’ve now opened up a limited number of spots to anyone, even if you are not a client of my custom development service. If your organization runs Redmine and needs more support than the open source community …
Redmine Commercial Support
I’m happy to announce that Little Stream Software is now offering commercial support for Redmine. If your organization runs Redmine and needs more support than the open source community support can provide, I’d be happy to have you as a client. I’m offering four different support plans to choose from, including a simple single support …
Just One Thing a Day
It’s time I share my secret formula I’ve been using to be successful: Do one thing each day to grow towards who you want to become (it’s a common secret) That’s it. No magic 12 step program, no killer coaching system (though they will give you direction and accelerate the learning). Just one improvement after …
Daily Code Reading #23 – RestClient::Request#execute
After looking at the other RestClient::Resource methods from yesterday, I noticed that they are all almost identical to #get. So today I’m going to dig into the code one level down, RestClient::Request. The Code RestClient::Request#execute 1 2 3 4 5 6 7 module RestClient class Request def self.execute(args, &block) new(args).execute &block end end endmodule RestClient …