[Rails] (JOBS)2 Nos Ruby Professionals required@Hyderabad Location

2015-06-22 Thread ShivaKumar Reddy
Hi All, Iam looking for 2 Ruby on Rails Professionals for a support project Who can join immedetlely with flexible work timings. Location :Hyderabad Experience required :2-3 Years Pls do mail resumes to mskredd...@gmail.com Thanks in Advance SK -- You received this message because you are subscr

[Rails] [ANN] RailsAsAService.com: A Ruby on Rails upgrade service.

2015-06-22 Thread Nicholas Hance
Rails As A Service is a new service designed to help owners of outdated Ruby on Rails applications bring their applications up to date. Now upgrading Ruby on Rails 2.3 or greater to the Rails 4.2.2. http://www.railsasaservice.com/ Rails As A Service is designed as a no-touch solution, with work

[Rails] Kaminari: Rails endless pagination should remember previous position when back from other page

2015-06-22 Thread Ganesh Kunwar
I'm using Kamaniri gem and jQuery infinite scroll for endless pagination. Everything works perfectly but when I visit other page and back to posts list page then the pagination starts from first page. Instead of starting pagination from first page it should remember the previous post location.

[Rails] Connect to a ODBC Data Source with SSL

2015-06-22 Thread Venkat Visvanathan
My Ruby on Rails App needs to connect to a ODBC Datasource that has SSL only enabled. Can somebody give me an example of connecting to a ODBC Source with SSL? I constantly get SSL required error. I dont see the option of passing SSL Certificates via UnixODBC. May be something I am missing. ~Venk

[Rails] Re: How can i add multiple records to a single table, through single form

2015-06-22 Thread Elizabeth McGurty
I feel more comfortable in deferring to my more advanced colleagues here. Pretty sure that this should work. But at an elegance level I am not happy with this. Seems to me that in the Attendance model I should use a scope. <%= form_for @students, :url=> {:controller=>"student", :action

[Rails] Re: How can i add multiple records to a single table, through single form

2015-06-22 Thread Mohammad Akram
I am using Rails 4.2.1 and ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14] On Monday, 22 June 2015 23:46:37 UTC+5:30, Elizabeth McGurty wrote: > > What version of Rails are you using? In the meantime, you should research > scope in models > > On Monday, June 22, 2015 at 2:04:0

[Rails] Re: How can i add multiple records to a single table, through single form

2015-06-22 Thread Elizabeth McGurty
What version of Rails are you using? In the meantime, you should research scope in models On Monday, June 22, 2015 at 2:04:04 PM UTC-4, Mohammad Akram wrote: > > Hi Elizabeth, thanks for the reply. I want to take attendance for entire > class of students not just one person. > > > > > On Mo

[Rails] Re: How can i add multiple records to a single table, through single form

2015-06-22 Thread Mohammad Akram
Hi Elizabeth, thanks for the reply. I want to take attendance for entire class of students not just one person. On Monday, 22 June 2015 19:47:57 UTC+5:30, Elizabeth McGurty wrote: > > Hope this helps... There might be typos, but I think it may lead you in > the right direction... Not sure the

[Rails] [ANN] Rails 4.2.3.rc1 and 4.1.12.rc1 have been released!

2015-06-22 Thread Rafael Mendonça França
Hi everyone, I am happy to announce that Rails 4.2.3.rc1 and 4.1.12.rc1 have been released. If no regressions are found expect the final release this Thursday, on June 25, 2015. If you find one, please open an [issue on GitHub]( https://github.com/rails/rails/issues/new) and mention me (@rafaelfr

Re: [Rails] Convert rails application to windows executable

2015-06-22 Thread Clayton Cottingham
Try ocra On June 22, 2015 6:25:49 AM PDT, selva raj wrote: >Hi all, > > Is there any possibility to convert the Rails application to exe >file? if so please suggest me the solution or provide the link. > >Thanks >Selvaraj > >-- >You received this message because you are subscribed to the G

[Rails] Re: How can i add multiple records to a single table, through single form

2015-06-22 Thread Elizabeth McGurty
Hope this helps... There might be typos, but I think it may lead you in the right direction... Not sure the most elegant direction Just assuming that attendance model contains attendance_date, present, comment Otherwise checkout Railscasts:#196 Nested Model Form (revised). <%= form_for @st

[Rails] Convert rails application to windows executable

2015-06-22 Thread selva raj
Hi all, Is there any possibility to convert the Rails application to exe file? if so please suggest me the solution or provide the link. Thanks Selvaraj -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this

[Rails] How can i add multiple records to a single table, through single form

2015-06-22 Thread Mohammad Akram
Hi, i have just started with rails. I am making a attendance web app. I want to insert student attendance into attendances table and unable to do it as the form just inserts only last entry of the form. Student table and Attendances table have associations(has_many,belongs_to,). Please let me k