[Rails] Re: Basic doubt in MVC - RoR

2013-09-01 Thread Robin Solanki
You'll need to create a session's controller to store in the session of the logged user, the MVC you created is good for registrations and all other CRUD related to it. On Sunday, September 1, 2013 3:48:38 AM UTC+5:30, Rita Ferreira wrote: > > Hi, > I'm with a very basic doubt in MVC in RoR. I

[Rails] Search Multiple Categories

2013-09-01 Thread zachariah ngonyani
I have a rails app that lists different law firms. These law firms can be categorized by Practice Area and Location. Now i need to implement a search, where people can select from a select option a Location AND a Practice Area and find all Law Firms that are in that selected Location which also

[Rails] Re: not able to find Gem file netbeans

2013-09-01 Thread Vijay Bhargav
Thanks Rick. i will post it in netbeans forum. -- 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 an email to rubyonrails-tal

[Rails] Re: Unable to do rake command

2013-09-01 Thread Dan Distraff
Update: I tried rvm use 2.0.0 and it worked. Now when I did which rake I get /home//.rvm/gems/ruby-2.0.0-p247@global/bin/rake When I tried rake db:migrate I get: Could not find coffee-script-source-1.6.3 in any of the sources Run `bundle install` to install missing gems. So right now I am tryi

[Rails] Re: Unable to do rake command

2013-09-01 Thread Dan Distraff
Jordon Bedwell wrote in post #1120296: > On Sun, Sep 1, 2013 at 4:54 PM, Dan Distraff > wrote: >> Previously I have been trying to install ruby and rails and used apt-get >> at one point. I did install previous versions of ruby and rails by >> mistake which I had to correct. Now I used rvm to in

Re: [Rails] Unable to do rake command

2013-09-01 Thread Jordon Bedwell
On Sun, Sep 1, 2013 at 4:54 PM, Dan Distraff wrote: > Previously I have been trying to install ruby and rails and used apt-get > at one point. I did install previous versions of ruby and rails by > mistake which I had to correct. Now I used rvm to install ruby 2.0.0 > and rails 4.0.0 but when I

[Rails] Unable to do rake command

2013-09-01 Thread Dan Distraff
Previously I have been trying to install ruby and rails and used apt-get at one point. I did install previous versions of ruby and rails by mistake which I had to correct. Now I used rvm to install ruby 2.0.0 and rails 4.0.0 but when I try to run the rake command I get: /usr/bin/env: ruby1.9.1:

[Rails] Re: not able to find Gem file netbeans

2013-09-01 Thread Rick
On Friday, August 30, 2013 12:31:18 PM UTC-4, Ruby-Forum.com User wrote: > > Hi, > > I am a newbie to Ruby. I have installed and set up Netbeans in windows > 7. I have created a new project but i am not able to see Gemfile in the > project tree view. can some one help me. > > thanks > vijay

Re: [Rails] Basic doubt in MVC - RoR

2013-09-01 Thread Colin Law
On 1 September 2013 05:08, Pandya, Amit wrote: > just do google "rails tutorial", click on very first search result link ;-) Amit is right, work right through a good tutorial such as railstutorial.org (which is free to use online), including all the exercises, then you will be all set to go. Col