2

Authlogic has a couple unfortunate deprecation warnings that are fixed in a fork.

How do I use this forked version? I tried adding the following to my Gemfile:

gem 'authlogic', :git => 'git://github.com/railsware/authlogic.git'

And it didn't work quite that well. I started getting:

git://github.com/railsware/authlogic.git (at master) is not checked out. Please run bundle install

And

The git source git://github.com/railsware/authlogic.git is not yet checked out. Please run bundle install before trying to start your application

Assistance will be rewarded with virtual cookies.

Steven
  • 17,796
  • 13
  • 66
  • 118

2 Answers2

3

Have you tried running bundle install after removing Gemfile.lock?

rm Gemfile.lock
bundle install

Your Gemfile configuration should work, I was able to use the same for and my bundle install command executes as does my bundle list command.

My other suggestion would be removing you ~/.bundler and .bundle directories and checking that you have properly configured git.

Pan Thomakos
  • 34,082
  • 9
  • 88
  • 85
  • Sounds reasonable. I followed the steps though, and I'm still getting "git://github.com/railsware/authlogic.git (at master) is not checked out. Please run `bundle install`" when running `bundle list`. – Steven Feb 01 '11 at 02:17
  • I updated my post with some other suggestions - I was able to get your example working just fine on my own machine. – Pan Thomakos Feb 01 '11 at 02:26
0

You need to run bundle install from the terminal after updating your Gemfile.

Dylan Markow
  • 123,080
  • 26
  • 284
  • 201