[Rails] Re: http requests

2017-06-01 Thread Joe Guerra
Well, I got the canada post api keys. I've got to try it with one of following canada post gem... https://rubygems.org/search?utf8=%E2%9C%93&query=canada+post On Thursday, June 1, 2017 at 12:29:18 PM UTC-4, steve enzer wrote: > > httparty might do the job > > On Wednesday, May 31, 2017 at 10

Re: [Rails] rails 4.2 query with operator in

2017-06-01 Thread Graham Ashton
I suspect the issue is that you've referred directly to a primary key called `projects.id` in your SQL, but (from the `belongs_to` call) we can see that column is actually called `baseline_id`. Have you tried changing 'projects.id IN (?)' to 'projects.baseline_id IN (?)' i

[Rails] [JOBS] Senior Ruby on Rails Developer | (m/w) | Berlin, Germany

2017-06-01 Thread Helen Rottluff
*Senior Backend Developer* We are disrupting an entire industry. In 2017 more than 50% of the retailers need a new cash register. We are building the most mobile-native way to manage stores: an iOS based cash register system which does not only help our clients to comply with the new law sta

[Rails] Re: http requests

2017-06-01 Thread steve enzer
httparty might do the job On Wednesday, May 31, 2017 at 10:27:42 AM UTC-7, Joe Guerra wrote: > > Hmm, which gem would allow you to perform http requests within Rails? I > would like to send a request to the canadapost website and pass it some > parameters and return a shipping total. > > I do b