An authentication plugin for Rails 3, inspired by restful_authentication, Devise and Authlogic with a focus on minimalism.

learn more… | top users | synonyms

0
votes
1answer
18 views

Code Sorcery cross compile give gc1plus

Im trying to cross compile using CS-Lite (arm-none-linux-gnueabi) using eclipse on a linux platform. when i build the project i get the following error for every .cpp file: arm-none-linux-gnueabi-g++ ...
0
votes
2answers
27 views

Rails, sorcery: can I not hash the password at all?

So, I went into the Sorcery source code and discovered that it already does, without telling anyone, what Devise recommends doing for testing purposes: Set BCrypt stretches to 1. Woohoo. However, ...
0
votes
1answer
53 views

Why does FactoryGirl(:build) work with Sorcery, but not FactoryGirl(:create)?

I'm trying to setup tests for my Rails app. I'm using Factory Girl and Rspec with Sorcery for authentication. For some reason this test doesn't pass: describe "User" do it "has a valid the factory" ...
0
votes
0answers
71 views

Devise & Sorcery

I have a Public API app in Rails that uses Devise for Rails Admin, and Sorcery is used for consumer authentication (consumers for the API). Whenever I add a route for devise as: devise_for :users ...
0
votes
1answer
34 views

Sorcery's current_user method returning false straight after login in production

I'm having a bit of an issue with the Sorcery gem. When I log in to my app, the controller successfully logs in that the, and then redirects me to another page (I can be sure the login credentials are ...
0
votes
0answers
47 views

RESOLVED Don't save record after install sorcery or formtastic

i try to rails console for me table object but when i install sorcery or formtastic (i don't know) my record don't save. Model class Depositi < ActiveRecord::Base attr_accessible :code, ...
0
votes
1answer
42 views

Sign in user on signup with Sorcery

I have authentication working with Sorcery. When users sign up, I want to automatically sign them in. User_controller def create @user = User.new(params[:user]) if @user.save flash[:success] = ...
0
votes
1answer
65 views

How do I expose my Rails App to an external source for authentication using Sorcery?

I have a rails app that stores my user information and data using the Sorcery gem, and I would like to have a chrome extension I am working on, authenticate with my rails app. I cannot seem to find ...
0
votes
0answers
32 views

Sorcery redirects wrong

User wants to sign up at domain.com/users/new, however the user accidentally presses "enter" and all fields are filled in blank. Now comes the problem. I have two options. If I remove... ...else ...
0
votes
2answers
41 views

From database validation errors

How is it possible to show the errors from the model validations if the user for instance types in an already used username or email. The validations I am using do work, and the page renders nicely if ...
-1
votes
4answers
74 views

using redirect and if multiple times

My question is actually fairly simple, how do I make a create action which checks if a user is logged in, and if she/he is then redirect to the dashboard instead of rendering the index page where ...
3
votes
2answers
67 views

redirect and login or login and redirect?

Simple question. What is preferred and why, or does it simply not matter at all? Sorcery gem example: if @user.save redirect_to index_path auto_login(@user) OR if @user.save ...
0
votes
2answers
144 views

Rails controller params attribute not defined

Answered. See the end of post. I am mainly a Java developer and fairly new to Ruby on Rails. I have successfully gone through the tutorial at railstutorial.org. So I got this to work once. My problem ...
0
votes
0answers
65 views

What's the difference between Sorcery and Authlogic?

What is the biggest difference between the Rails Sorcery authentication gem and Authlogic. They both allow you making your own controllers and views. Ryan Bates talks about how he likes Sorcery more ...
0
votes
1answer
57 views

Setting up a session_store with subdomains interfere with Twitter login. Why?

In the development environment. Twitter API requires us to login from 0.0.0.0 instead of localhost or any other hostname. However, we are also testing our local app via sub domains. In ...
0
votes
0answers
136 views

Using letsrate gem along with sorcery gem

I found this really cool gem called letsrate, so i decided to use it. I follow this post instructions and also the documentation. The official documentation uses devise as authentication gem and i ...
0
votes
2answers
225 views

Facebook oauth login with custom parameters using Sorcery gem

I'm trying to pass a custom parameter to Facebook oauth url to get it back in the callback. I know it's possible but I'm using Sorcery gem and I need to set the parameter dynamically, I mean I can't ...
1
vote
1answer
215 views

Sorcery/Capybara: Cannot log in with :js => true

I've been using capybara for a while, but I'm new to sorcery. I have a very odd problem whereby if I run the specs without Capybara's :js => true functionality I can log in fine, but if I try to ...
0
votes
0answers
139 views

Why am getting an undefined method error when using sorcery's test helpers in my integration test?

I have a rails app that is using Sorcery for authentication. I'm trying to write an integration test for the public pages that appear when you are logged out as a user. All of my integration tests ...
0
votes
1answer
69 views

Redirect to previous page following user registration with Rails and Sorcery

I have a small Rails 3 app that uses sorcery for User authentication. When a non authenticated user visits page 'A', they are restricted from viewing portions of the page unless they are logged in or ...
0
votes
1answer
68 views

Sorcery specs running really slow

I'm trying to set up my application to use Sorcery. When I add authenticates_with_sorcery! to my user model, my specs start to run really slow (about one per second). Is there some kind of ...
1
vote
1answer
92 views

Problems with Sorcery

I'm running into multiple problems.. 1.When I start up the rails server and visit http://0.0.0.0:3000/users, I am able to see all users which is what I want however, when I click on the login button, ...
0
votes
1answer
101 views

Sorcery fails to log in in RSpec

I have an app that uses Sorcery (or tries to use it), and I am writing the specs for it: context "successfull attempts to log in" do let(:attr) { attributes_for(:credentials) } before(:each) do ...
1
vote
1answer
143 views

Mongoid + Sorcery: Visible confirm_password field in database

So I'm using the Sorcery Gem to handle authentication in my Rails App (Wich is using MongoDB via Mongoid as DB) and my user model looks like this: class User include Mongoid::Document ...
0
votes
1answer
169 views

Current user not persisting across one controller action

I've got a Rails 3.2.8 app using Sorcery for authentication. Sorcery provides a current_user method, pretty standard stuff. My app has subscriptions, they work pretty much in the standard resourceful ...
1
vote
1answer
204 views

Adding external providers to sorcery

I have an with authentication, wich has been done with devise and used omniauth to sign in from various providers (including vk.com, google, twitter and so on). Everything seemed working well, except ...
0
votes
1answer
231 views

How to use the Facebook JavaScript SDK with the sorcery gem

I followed the guide provided here by Sorcery about handling user logins with Facebook. # callback method called by Facebook after getting the authorization by the user if user = login_from(provider) ...
0
votes
1answer
63 views

Sorcery - signed_in_user

I can get <% if current_user %> to work. However I would like to be able to use statments like <% if current_user=(user) %> or something like that. How can I do this with Sorcery?
0
votes
1answer
67 views

Can you use form_for with the sorcery login form instead of form_tag

I'm trying to solve this problem: Sorcery and Simple Form implementation It seems that all I need to do is to be able to use form_for with the sorcery login form instead of form_tag. That would ...
3
votes
1answer
170 views

Ruby on Rails 3.2 Sorcery authentication with sub users

I'm using Ruby on Rails 3.2.8 with Sorcery authentication. What is the best way to create sub-users accounts? Ideally, I would like to invite members by email and have them click on a link and ...
0
votes
0answers
43 views

How does one access `user_hash` from `env`?

I'm using Sorcery, How does one access user_hash from env in the callback method? I am trying to get the user's Twitter details after he logs in.
0
votes
1answer
157 views

Sorcery User Factory Not Valid

I am trying to get into writing better tests with rspec and factory girl. I am trying to test my user model, but my first test keeps failing. I use Sorcery for my authentication system, but I can't ...
0
votes
1answer
424 views

Rails 3.2.5 Sorcery and delayed job integration to send emails

I am developing a Rails 3.2.5 application with Sorcery for authentication and delayed_job for background processing [ sorcery (0.7.12), delayed_job (3.0.3), delayed_job_active_record (0.3.2) ]. My ...
0
votes
1answer
64 views

How to remove username from sorcery app user attributes

I'm using sorcery for authentication on a rails app and I was wondering how to remove the username from the User model. I am successfully using the email address for login, but I still see this on ...
0
votes
1answer
212 views

Using Sorcery to login with twitter

i keep on getting this error OAuth::Unauthorized in OauthsController#callback 401 Unauthorized In oauth_controller error in this line --- @user = login_from(provider) I am using sorcery 0.7.7 ...
0
votes
0answers
126 views

shoulda set_session with symbol as session key

In my controller spec I've the following test should set_session(:user_id).to(@user.id) Running this test raises the following error Failure/Error: should set_session(:user_id).to(@user.id) ...
0
votes
1answer
238 views

Support multiple models with Sorcery or Authlogic gems?

I have users and contacts. Users sign into their account and can create address books from which they add contacts to. If they share something with a contact that contact needs to login to view it. ...
1
vote
1answer
232 views

Couldn't find User with id=pJycxPPmoBQw9D2mfW6W

Actually I'm using sorcery for authentification with the following set up : rails 3.2.3 postgresql 9.1.3 cancan When I click on the activation link I get the following error: ...
0
votes
1answer
309 views

Accessing Rails API using a single access token via RubyCAS

I'm currently designing and prototyping the architecture for a web application that comprises of three parts, a Restful API (JSON, XML) interface served from a Rails app, a Backbone.js application ...
2
votes
1answer
373 views

Rails + Sorcery: Add external auths to existing user

I'm using Sorcery for Authentication in a Rails app. I have it set up fine, I can add users by username/password or via external auth (only using twitter at the moment). However, one thing I have not ...
3
votes
2answers
185 views

Authentication Error with Sorcery - No Such Method create

I have a challenge with my Rails 3.0.9 application, had been working "well" until some days back when i made a commit of some static content. It's on heroku and i use the Socery Gem for Authentication ...
1
vote
0answers
203 views

Sorcery Gem - Custom user_info_mapping for external providers

I am using version 0.7.7 of the Sorcery Authentication Gem by NoamB on my Rails 3.2 App I am looking for a possibility how i can hook up a method which is doing the user info mapping for a specific ...
0
votes
1answer
174 views

Sorcery gem with has_one association

Now i'm using this code: User has_one User_extra User => :username, :email, :crypted_password, :salt, :mobile User_extra => :user_id, :date_birth, :gender, :address user.rb class User < ...
2
votes
1answer
213 views

What method of authentication should I use with the Sorcery gem using a mobile application?

I'm trying to determine if there is a specific method of authentication one should use besides the traditional basic HTTP auth that is offered with the Sorcery gem given the fact I would want to ...
2
votes
1answer
920 views

Rails admin with Sorcery

I'm trying to install the Rails Admin Gem using Sorcery for authentication instead of Devise. Rails admin does provide a hook that you can use to attach your own authentication method. Here is the ...
1
vote
3answers
493 views

Rspec - Accessing Sorcery methods/variables

Trying to write some tests for code I've already written, with a view to extending my code using test-driven development. I have a controller whose index action calls a 'user_info' method, which just ...
1
vote
2answers
1k views

Sorcery and Simple Form implementation

long time reader first time user. I'm putting together my first RoR application and I've isolated everything my app should use down to:- Sorcery Omniauth CanCan twitter-bootstrap (converted to sass) ...
2
votes
3answers
320 views

Rails Sorcery Bug? Creates Duplicate User Accounts

The example sorcery code shown on github appears to me to create duplicate accounts if it is extended to allow for multiple sign in methods (which is the whole point of oauth). You can see in the ...
0
votes
3answers
433 views

Sorcery registration not going through

I'm trying to use the Sorcery gem for authenticating users, but after the registration form is filled out it redirects back to the registration page with an error. I'm able to create a user from the ...
2
votes
1answer
299 views

.as_null_object on a double causes Rspec to just hang?

I'm not quite sure how to explain this. I have an existing Rails 3.1.3 app running RSpec 2.8.1, with a test suite of 284 tests. They will execute over and over again quite happily. I added a new ...

1 2