Re: [Rails] join table naming

2013-04-26 Thread tamouse mailing lists
On Wed, Apr 24, 2013 at 2:47 PM, Colin Law wrote: > On 24 April 2013 19:00, Dave Castellano wrote: >> Hi, >> I’m an amateur learning rails and could use some help… >> I created a join table “pictures_questions” >> and append to it in the following way: >> @picture = Picture.new(params[:picture])

Re: [Rails] Part time rails job for learning experience

2013-04-26 Thread tamouse mailing lists
On Thu, Apr 25, 2013 at 1:30 AM, Arvind Vyas wrote: > I am also looking for part time job ,i have 1.3 year of exp in rails > > > On Thu, Apr 25, 2013 at 4:39 AM, Numan Ilyas wrote: >> >> Hi guys, >> >> I am looking for part time job as learning experience for rails. I've >> total 6 years of exper

Re: [Rails] Re: Examples of long AND WELL-WRITTEN Ruby scripts

2013-04-26 Thread tamouse mailing lists
On Thu, Apr 25, 2013 at 10:18 AM, Pat Johnson wrote: > No, there is no "ruby generate" or "ruby new" commands that would generate a > skeleton program. Ruby itself is just like any other compiled on the fly > interpreted programming language. You can simply write code in a text file > and execute

Re: [Rails] Ruby on Rails!! Multiple Positions at MO

2013-04-26 Thread Pandya, Amit
KNOCK KNOCK ADMIN!!! On Fri, Apr 26, 2013 at 7:33 AM, Shiva Prasad wrote: > Hi , > > ** ** > > This is shiva from enrich. Please view the job description and respond > with your updated profile. If you have any references you can refer them.* > *** > > ** send your profiles to shiva.kond...@

[Rails] Ruby on Rails!! Multiple Positions at MO

2013-04-26 Thread Shiva Prasad
Hi , This is shiva from enrich. Please view the job description and respond with your updated profile. If you have any references you can refer them. send your profiles to shiva.kond...@enrich.com or call me at 770-574-4222. *Looking for Ruby on Rails!! Multiple Positions* * * *Locatio

[Rails] Question about ActiveSupport::Concern and mongoid model definition

2013-04-26 Thread Damjan Rems
I am using mongoid and MongoDB and have come lately to a very tough problem and I need an advice. I am working on a CMS and one of the ideas was that CMS would provide some basic models definitions and end user would, if needed, extend basic class with its own extension and save them to different

[Rails] rails route_translator utf8

2013-04-26 Thread oto iashvili
Hi, Im using route_translator gem, which is really great, but unfortunatly Im stuck because special caracters are not recognized. for instance for page /ru/войти , I have this error message No route matches [GET] "/ru/%D0%B2%D0%BE%D0%B9%D1%82%D0%B8" same for french special caracters like "

[Rails] :with_disabled attribute

2013-04-26 Thread siva kumar
I'm newbie to RoR, can anybody explain what is the purpose of ":with_disabled => true" in belongs_to :person, :class_name => 'Party', :foreign_key => 'person_id', :with_disabled => true Because I'm getting the following error Unknown key(s): with_disabled FYI: I couldnt find any documenttion fo

Re: [Rails] Re: Missing template pages/layout only occasionally

2013-04-26 Thread Rick
I finally figured this out. I have an action that only renders html, but googlebot for instance wants text. So, I added this to the controller and everything works! before_filter :force_html_requests, :only => :show def force_html_requests request.format = :html end Rick On Monda