I am using authlogic for authentication and at the same point i m
using authlogic_rpx and rpx_now plugins for login using fb/gmail/
twitter .
I have followed this link from github.
http://github.com/tardate/rails-authlogic-rpx-sample
I didnot get any problem in my testapplication where i tested the same
thing. But when i am integrating this into my project , my server is
not getting started because of the following line in environment.rb.
config.gem 'rpx_now'
config.gem 'authlogic_rpx'
config.gem 'authlogic'
On commenting first two gems , i am able to work on. If i uncomment
them i m getting the error as :
Error:
c:/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.5/lib/active_record/
base.rb:1959:in `method_missing': undefined method
`add_acts_as_authentic_module' for ActiveRecord::Base:Class
(NoMethodError)
Note : I have installed all the gems i have mentioned in
environment.rb.
But i dnt get wherethe problem is .