Reputation: 899
I am new to ruby on rails and transferred from php into ruby on rails and I find it really great specially the fast development of it.
My questions is that , Is there any gems out there that I can use for my personal project that i am currently working on that would enable CRUD of users into my project with profiles , friends etc. or anything like a social media gems or do i have to make it manually?
Anything on this will help loads and thanks!
Upvotes: 0
Views: 389
Reputation: 2135
You have lot more social media gems to work with rails.If you need authentication for your app you can use devise https://github.com/plataformatec/devise
or you can use different gems for different social media sites
for example twitter you can use 'gem twitter' https://github.com/sferik/twitter
for facebook: koala gem check this link https://github.com/arsduo/koala
Hope this helps you some extent
Upvotes: 1