[Rails] Re: GAntt chart development tools

2015-01-14 Thread Kashif Umair Liaqat
Is there anyone with the suggestion? I also need it. On Wednesday, January 14, 2015 at 5:28:55 PM UTC+5, Ruby-Forum.com User wrote: > > can any one pls suggest atool to generate gantt chart suitable for rails > application > > -- > Posted via http://www.ruby-forum.com/. > -- You received th

Re: [Rails] undefined method `devise' for User(no database connection):Class

2015-01-14 Thread Rafi A
Hi Colin, Thanks. Now its working. I have used connection_ninja gem for connecting more that one database in my application. After correcting the environment configurations in proper sequence in yml file, everything started to working.. Regards, Seeni Rafiyullah Khan A, *In Every moment, thank G

[Rails] Re: Ruby code Injectors: Closures as Modules: Jackbox

2015-01-14 Thread lha
4. ANNOUNCING a new release of Jackbox. In this release, we have finalized our definition of Injector Versioning. We have included a separate Rspec file with examples on it, and have expanded the documentation to include a new section describing what it is and how it works. We hope you find it

[Rails] Re: Link To New Association

2015-01-14 Thread Matt Jones
On Tuesday, 13 January 2015 11:22:14 UTC-5, Diego Dillenburg Bueno wrote: > > Further updates on my question above: > > what if I have a helper method to store the "current_patient", having > always the last patient from my search query and on my > hospitalizations_controller I build the Create

[Rails] Add multiple user support for a function

2015-01-14 Thread David Williams
These two functions below work perfectly for end to end normal user interaction. But, I need help giving line 2 of the code "recipients = User.where(id: params['recipients']) multiple user support. As in allow User model to interact with BizUser model. def create recipients = User.where(id: pa

[Rails] Re: Devise rendering default views from gem instead of newly generated ones

2015-01-14 Thread David Williams
I had to turn on this function through the config file devise.rb. [SOLVED] -- Posted via http://www.ruby-forum.com/. -- 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

[Rails] Devise rendering default views from gem instead of newly generated ones

2015-01-14 Thread David Williams
I generated views/controllers for two user models upon installing devise. For whatever reason, the views that are included inside of the gem itself are being rendered instead of the ones that I added. /views/users/registrations/new.html.erb /views/bizusers/registrations/new.html.erb Current route

[Rails] Re: Re: Re: Re: CPU utilisation spikes to 100% on Rails application startup on ARM platform

2015-01-14 Thread Chetan Raskar
Colin Law wrote in post #1166588: > On 13 January 2015 at 05:10, Chetan Raskar wrote: Yes,'Startup' means when I start the server. >> be at least 3 other applications that will be running along with this.So >> I am worried its performance impact will be more at that time. > > But since server

Re: [Rails] How to save a reorganizing range?

2015-01-14 Thread Colin Law
On 14 January 2015 at 12:40, Psycho Shine wrote: > Hi all > > I have a relation @user.tracks, > > track(user_id:integer, point:integer, track_name:string) > > I want to reorganizing all user's track.point from integer to range. > Another words, > from > array = [1,4,10,14,22] > do > array = [0..1,

[Rails] How to save a reorganizing range?

2015-01-14 Thread Psycho Shine
Hi all I have a relation @user.tracks, track(user_id:integer, point:integer, track_name:string) I want to reorganizing all user's track.point from integer to range. Another words, from array = [1,4,10,14,22] do array = [0..1, 2..4, 5..10, 11..14, 15..22] My code is: @points = @user.tracks.

Re: [Rails] Devise error - Reg

2015-01-14 Thread Vivek Sampara
Arun, Did you add the field for avatar for user model ? you need to do 2 steps. 1.https://github.com/thoughtbot/paperclip#migrations 2. run rake db:migrate Restart server and check again . Cheers Vivek On Wed, Jan 14, 2015 at 5:12 PM, Arun Kumar wrote: > Hello.I have been following one month

[Rails] GAntt chart development tools

2015-01-14 Thread Ragesh R.
can any one pls suggest atool to generate gantt chart suitable for rails application -- Posted via http://www.ruby-forum.com/. -- 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

[Rails] Looking for a Ruby on Rails developer

2015-01-14 Thread georgieinsureandaway
*Holiday and Travel Insure and Away Ltd* is a leading online provider of travel insurance. Owing to continued expansion we are looking to appoint a full time experience lead Ruby on Rails developer to improve and maintain our existing travel insurance application. You will be responsible for

[Rails] Re: how to run offline "bundle install" from windows

2015-01-14 Thread egyamado
If you have your gems installed, you can use "*bundle install --local*" . No internet connection require. -- On Monday, October 10, 2011 at 2:01:50 AM UTC-4, diver_neil wrote: > > greetings! i just install most of the gems 3.1.1 required for offline > install. when creating "rails new appn

Re: [Rails] undefined method `devise' for User(no database connection):Class

2015-01-14 Thread Colin Law
On 14 January 2015 at 10:01, Rafi A wrote: > Hi All, > > I am getting the error mentioned in SUBJECT while fetching the user model. I > am using three different database in my application. Can I use devise gem > for authentication user table in different database? Did you run rails generate devis

[Rails] undefined method `devise' for User(no database connection):Class

2015-01-14 Thread Rafi A
Hi All, I am getting the error mentioned in SUBJECT while fetching the user model. I am using three different database in my application. Can I use devise gem for authentication user table in different database? Regards, Seeni Rafiyullah Khan A, *In Every moment, thank God.* -- You received thi