Reputation: 395
Basically, the app has to support sign up/sign in functionality and allow user to add friends and allow friends to chat.Since, I am just starting? with rails it's a bit overwhelming. How should I go about it
Also, the aim is not an application for production. It'll be great if you could link to some working demos of the same.
Thanks!
Upvotes: 0
Views: 1518
Reputation: 2457
You can also check out a tutorial I did on how to achieve the same using devise
and private_pub
gem. I believe this should get you started http://goo.gl/l3e8zN
Upvotes: 0
Reputation: 2091
You would need ofcourse to read tutorials for rails beginners, I recommend the official rails guide.
For sign up/sign in, you could use the devise
gem, and for chat push you could take a look at private_pub
gem.
Upvotes: 0
Reputation: 3499
If you are learning rails there are lots of great resources online. Try googling for a few.
I would suggest Michael Hartl's Rails Tutorial - http://ruby.railstutorial.org/ruby-on-rails-tutorial-book - it includes bits of what you want.
Upvotes: 1