0
votes
1answer
54 views

Custom password field with devise (ruby)

I'm using a database shared between 2 rails apps. A webapp using BCrypt and has_secure_password to authenticate user, and my app, an REST API, using Devise to authenticate users. Password hash is the ...
0
votes
1answer
131 views

Redirecting to current page after sign in using devise

I am using devise for user sign in/up. I want to redirect the user from on the page where they were before login. But devise is not redirecting properly. On sign in, it signs in user but throws error ...
0
votes
1answer
39 views

ActiveRecord::StatementInvalid in AuthenticationsController#create

I've almost got Omniauth w/ twitter working, however when it attempts to re-direct me to my app after validating twitter credntials I get the following long-winded error: ...
2
votes
4answers
185 views

Devise gem skip confirmation and skip confirmation via email both at once

I am using devise gem and while creating user I want to skip confimation! and skip confimation email both example : User.create(:first_name => "vidur", :last_name => ...
1
vote
2answers
131 views

Bypassing Devise gem registration form to create a new user?

I am usin devise gem and recaptch in rails project can any one give me a hint: how to create a new user bypassing recaptcha and without submitting a form of devise gem.
1
vote
1answer
54 views

How do I create an admin in Ruby On Rail using the Devise Gem?

I am developing a rails application and am using a gem called devise to manage my users. I have created a new user called "Admin" but am unsure on how to change a user on the application from a "User" ...
0
votes
1answer
165 views

Rail Devise creat own sign_in and sign_out actions

I have the following problems with dives in rails. All requests and response are JSON After I sign in /partners/sign_in I get the following response: HTTP/1.1 200 OK {"success":true} And ...
6
votes
1answer
2k views

Where to override current_user helper method of devise gem

How can i override current_user of devise gem. Actually I need to add web services for mobile-app. Currently devise is managing session and 'current_user' for web-application. Now Mobile app will ...
0
votes
1answer
378 views

bundle install failed

I am getting this error on bundle install Gem::InstallError: devise_invitable requires RubyGems version ~> 1.3.6. Try 'gem update --system' to update RubyGems itself. An error occured while ...
0
votes
2answers
893 views

rails 3.1, why devise can't build the resource?

I've noticed that created resouce attributes are all blank after executing build_resource at Devise::RegistrationsController create function here is the params object sent: ...
1
vote
1answer
67 views

include ruby modules without the include statement - how is this implemented?

following code is generated by devise. How can we just use "devise" here to include the modules in my User class. How is the devise recognized here ? I don't see any include statement here. Is it ...
0
votes
1answer
217 views

Disabling validations when reseting passwords in Devise/Warden

I have a user model as follows: class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :invitable, :recoverable, :rememberable, :trackable, :validatable, ...
2
votes
2answers
665 views

How to populate some default users in Devise?

I'm working on trying to get Devise working in my Rails app. I'm a new Rails user. What's the proper way to add a few default users?
1
vote
1answer
1k views

Devise - uninitialized constant User::PasswordHistory

I have a rails 3 application that I am working on and have implemented devise. I have it working, and now I wish to extend it so that a user is unable to use a old password more than once. Found this ...
4
votes
1answer
483 views

Devise(1.3.4 ownward),Omniauth to use ldap

I want to use Devise(1.3.4) in a scenario at first it check login details over LDAP through Omniauth if that unsuccessful than it try database verifcation can you please guide me with example to do ...
4
votes
1answer
2k views

Devise: redirect on sign up failure?

I'm trying to redirect users that have failed the sign up form (e.g. they entered a username that is already taken, they left a field blank, etc...) I have custom failure set up for users that fail ...
15
votes
10answers
5k views

Why do I get a bcrypt-ruby gem install error?

Getting an error when trying to install the gem devise, the installation is stopping on the gem bcrypt-ruby: $ gem install bcrypt-ruby Error installing bcrypt-ruby: ERROR: Failed to build gem native ...
2
votes
0answers
395 views

devise + omniauth undefined method `find' for Symbol:Class error

NoMethodError in Projects#index Showing /home/dave/Documents/exercises/todo/app/views/layouts/application.html.erb where line #18 raised: undefined method `find' for Symbol:Class Extracted source ...
0
votes
2answers
753 views

`method_missing': undefined local variable or method `authentication_keys' error when installing devise

I'm trying to get Devise up and running. I'm using devise 1.0.10 and rails 2.3.8, on an otherwise pretty clean hostingrails install. When I run ruby script/generate devise_install I get the ...
3
votes
4answers
1k views

OmniAuth and Devise, how to set optional passwords

I am using OmniAuth and Devise to authenticate users. I would like users that have signed up using OmniAuth providers to be able to set an optional password (needed for API authentication) but I'm ...
2
votes
1answer
405 views

Devise gem not working for IE8 in staging (but works for Chrome and Firefox)

We use devise 1.0.6 (Ruby 1.9.2 / Rails 2.3.8) for authentication. For some reason on staging, user authentication seems to be not working in IE8 because, when registered users log in, they did not ...
3
votes
1answer
566 views

Rails 3: Devise users_controller, where is it?

After I create a devise as Users, where is users_controllers.rb?
2
votes
4answers
2k views

Rails 3: Permalink public profile

I have /users/1 as the public user profile (show method) but I'd like to have /user_name instead of /users/1. Can I accomplish that if I use devise? Thanks Edit: My show controller: # public ...
8
votes
5answers
2k views

Rails Devise: after_confirmation

Is there a way to create a after_confirmation :do_something ? The goal is to send an e-mail after the user confirms using Devise :confirmable. Thanks
3
votes
2answers
2k views

How to tackle different user types with Devise

I have 2 types of Users. A Company and a Worker. How do I manage it in devise where I have only 1 User. I want to create 2 registration pages for Company and Worker. But i only want 1 table wish ...
0
votes
1answer
617 views

Rails 3: Different views for each model

I have two models using Devise and I want the views to be different from one another. However, it only has one new.html.erb view, etc. How can I have separate views for each model? thanks
0
votes
1answer
519 views

Devise, flash message when require_no_authentication + redirect

Could you tell me whats the best practice to include flash messages f.e. "You must be logged out to view the requested site", when the require_no_authentication-filter is set and the user accesses a ...
1
vote
2answers
620 views

Ruby on Rails' gem “Devise” doesn't even have a controller file in app/controllers?

After installing Devise, there are routes to /users/sign_in /users/sign_up /users/sign_out but there is no file app/controllers/users_controller.rb? why does this require no controller file or is ...
0
votes
2answers
254 views

Changes to the code are not getting reflected in Rails 3.0

I have started a project using Rails 3.0. I am using devise for the authentication. Devise includes links to signin and forgot password in the sign up page. These links are loaded by means of a ...
13
votes
2answers
10k views

Using Devise with Rails 3. Adding multiple roles?

We are using the devise gem for authentication in a Rails 3 application. We have multiple roles and from the devise stand-point, the roles will differ in terms of confirmation, activation and remember ...
3
votes
2answers
2k views

how to change devise's flash[:notice] in rails

I'm using rails 2.3.5 and devise 1.0.6. I'm having users confirm account's with email. However, when a new user sign's up the flash notice says "The user was successfully created" which it was but it ...
3
votes
1answer
1k views

Rails Custom Plugin/Gem with Partials

I am writing a gem which provides helpers for views. The HTML I want to insert via the helper is complex enough that I'd rather write it in a _partial.html.erb file. How do I get the gem's view path ...
4
votes
4answers
4k views

Twitter Oauth Strategy with Warden + Devise Authentication Gems for Ruby

Devise, the authentication gem for Ruby based on Warden (another auth gem) does not support Twitter Oauth as an authentication strategy, BUT Warden does. There is a way to use the Warden Twitter Oauth ...
6
votes
3answers
3k views

Incorporating Devise Authentication into an already existing user structure?

I have a fully functional authentication system with a user table that has over fifty columns. It's simple but it does hash encryption with salt, uses email instead of usernames, and has two separate ...