Do I need Devise and CommunityEngine on the same app? [closed] - ruby-on-rails

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm building a new social site in Rails(4), and want to use some of the social networking features available in CommunityEngine. Do I also need to add Devise for signups, or does CommunityEngine now have that capability too?
At this time I'm not offering Omniauth configuration through Fb or Twitter, g+ and so on.
I'm open to any additional recommendations you might have as well. Thanks!

i will suggest you to use devise for signin/signout/password management etc and community engine to handle the applications community functions such as blog,posts,profile management,user upload and comments..lets keep authentication seperate because community gem is made for enabling social functions not authentication which is a secoondry function or add-on ..so you can go ahead and use devise for authentication and community gem seperately hence keeping both modules seperate and they both work hand in hand without any probs

Related

A Ruby on Rails framework which can be used for website for an event organizer [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I once build a webshop in Rails using the Spree framework. This was great since everything I needed for a webshop came out of the box. Now I want to make a website for people who organize dance parties. The site should have information of the new line-up and location, pictures/videos of older parties, and the possibility to buy new tickets.
I hope if you think of something that can be used which is like what Spree is for a webshop but then for the above requirements I would be very happy if you could share it with me.
Thanks for your help.
Rails is a good framework for this.
Meaning I can't think of anything premade to help you accomplish this, but it doesn't sound difficult to do from scratch.

Which Ruby on Rails gem should be best used for importing the user data from facebook into database? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to build a Ruby on Rails application for which I need to import all the data (excepts posts, shares and messages) of a Facebook user.
This will be my first RoR app on my own (newbie) and really not able to find the right gem for my requirements.
Please help!
First you need to authenticate from facebook and then you can use the koala gem to get any details/post on facebook.
For authentication ,you must use omniauth facebook gem.Once you are authenticated,you can interact with facebook to get any details you want using koala gem where you can use the access token received after authentication from omniauth facebook gem.
You can google around and get the idea how to auththenticate from facebook and have a look in 361-facebook-graph-api Railscasts.
...HOPE THIS HELPS
do watch this as well:- facebook authentication in rails

Invite user to an organization rails [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have an enterprise app that keeps track of many organizations each of which can have many users. What's the best way to construct a mailer that would allow a current Organization's User to invite other users to that Organization?
I'm currently looking into the devise_invitable gem, but not sure how to exactly execute what I want to do with it.
I implemented invitations functionality in an enterprise application by making a few changes to this excellent example on rail casts. Kindly have a look. It works perfect for me and it is a very reliable and precise example. it uses email and invitation token to implement the functionality.
http://railscasts.com/episodes/124-beta-invitations

How to integrate Viber in iOS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
In one of my application I want to integrate Viber. I searched on google for SDK but all my effort went in vain. So I have following question.
QUE:
Is it possible to integrate Viber in my application?
If yes, then provide me link for SDK and doc.
PURPOSE:
In my application I want to implement invite feature. When user tap on "Invite Via Viber" my application will open vibe application. After that end-user will select the contact and in share predefined text that I Passed through my app.
You can not do this. Viber does not provide any SDK or API for this purpose. You may take interest in login via Facebook or Twitter..
Because these social sites are way too popular than Viber.
You may look at these links:
https://developers.facebook.com/docs/ios/
https://dev.twitter.com/docs/ios‎

Facebook login with Ruby on Rails [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Could somebody recommend me tutorials or good explanation sites to implement a Facebook Login on my Ruby on Rails App?
You want to take a look at the Devise gem and use omniauth-facebook in conjunction with it. There's a sample site at https://github.com/stefanobernardi/Rails3.2-Devise-Facebook which shows how it's done.
OmniAuth is an easy way to add many different authentication services like Facebook, LinkedIn, google and twitter to your app.
http://railscasts.com/episodes/235-omniauth-part-1?view=asciicast
http://net.tutsplus.com/tutorials/ruby/how-to-use-omniauth-to-authenticate-your-users/
http://blog.railsrumble.com/blog/2010/10/08/intridea-omniauth

Resources