[Rails] Looking for a Ruby on Rails Developer [JOBS]

2015-06-11 Thread Dieu
Hi all, I am looking for a Ruby on Rails Developer in the Netherlands, are you the one or do you know the one I am looking for? Please contact me asap by sending an email to dieudohube...@hotmail.com Thank you for the effort! All the best, Dieu -- You received this message because you

Re: [Rails] Reg:Ruby gem that will encrypt all the data in the database

2015-06-11 Thread Timothy Mukaibo
Your database engine can probably encrypt the data for you. That is likely a better option! On 11 June 2015 at 19:16, VIDYA SAGAR POGIRI vidyasagarpog...@gmail.com wrote: Hi is there any gem that will encrypt the data in the database table, if yes tell me the gem name -- You received this

[Rails] Reg:Ruby gem that will encrypt all the data in the database

2015-06-11 Thread VIDYA SAGAR POGIRI
Hi is there any gem that will encrypt the data in the database table, if yes tell me the gem name -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] ActionMailer `deliver_later`, retrieving job details

2015-06-11 Thread itsmechlark
Hi, Is it possible to retrieve job details after `*deliver_later`?* Thank you, Chlark -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: ActionMailer `deliver_later`, retrieving job details

2015-06-11 Thread Elizabeth McGurty
Well there is always your production.log. Otherwise, checkout: http://edgeguides.rubyonrails.org/action_mailer_basics.html Section: 6 Action Mailer Configuration On Thursday, June 11, 2015 at 5:25:49 AM UTC-4, itsmechlark wrote: Hi, Is it possible to retrieve job details after

[Rails] Re: Reg:Ruby gem that will encrypt all the data in the database

2015-06-11 Thread Mike
There is attr_encrypted, which will do some stuff It depends why you want encryption to an extent, if you are worried about someone stealing the server, use disk encryption, if you are worried about a DBA stealing your data, you could try this gem, but anyone who had access to the (running)

[Rails] Re: SSL errors with open()

2015-06-11 Thread Mike
It is possible you do not have a fully up to date root certificate list, root certificates are stores in the browser, but OpenSSL uses its own directory Since you are using rvm on OS X by the look of it, so you may want to try the following command to see if this helps rvm osx-ssl-certs

[Rails] Re: ActionMailer `deliver_later`, retrieving job details

2015-06-11 Thread Mike
Depends on your queueing system for Active Job, most back ends provide job numbers and status If you are using the standard inline runner, then the details should be in your production log On Thursday, 11 June 2015 10:25:49 UTC+1, itsmechlark wrote: Hi, Is it possible to retrieve job

[Rails] Re: Freelancer Rates for RoR Developers

2015-06-11 Thread Elizabeth McGurty
I followed the Toptal path. Got Skype all set up. Received confirming message. And then I get this demand to take tests at codility.com supp...@codility.com. No instruction. I am told to take Free/Trial tests. I don't see anything. Liz On Tuesday, May 6, 2014 at 5:07:02 PM UTC-4,

Re: [Rails] Re: Freelancer Rates for RoR Developers

2015-06-11 Thread Colin Law
On 11 June 2015 at 21:23, Elizabeth McGurty emcgur...@gmail.com wrote: I followed the Toptal path. Got Skype all set up. Received confirming message. And then I get this demand to take tests at codility.com. No instruction. I am told to take Free/Trial tests. I don't see anything. Liz

[Rails] Re: making ActiveRecord::Base sort by id

2015-06-11 Thread javinto
I would not recommend using a default scope on an ActiveRecord model for sorting. Start your Rails console and try Model.find(1). This will result into: SELECT models.* FROM models WHERE models.id=1 ORDER BY id DESC LIMIT 1 This ORDER BY will be included in every unneccessary query. The above