Rails 3 beta plugins

Has anyone actually installed a plugin? I have used rails plugin install git://github.com/binarylogic/authlogic.git I reacts too fast - doesn't complain but you can't find the plugin anywhere.

I have seen people giving advice on rails 3 to use script/plugin obviously they are responding having not even used the new release.

If I am fighting a losing battle ok - I can work on other things with rails 3. I also have read where people say the have authlogic working but can't verify any of them.

I knew it would be a tussle getting this all to work smoothly but it is starting to give me a case of the red ass

please any help will be appreciated but please don't guess just real experience !

Has anyone actually installed a plugin?

I have used

rails plugin install git://github.com/binarylogic/authlogic.git

I reacts too fast - doesn’t complain but you can’t find the plugin

anywhere.

I have seen people giving advice on rails 3 to use script/plugin

obviously they are

responding having not even used the new release.

If I am fighting a losing battle ok - I can work on other things with

rails 3. I also have read where people say the have authlogic working

but can’t verify any of them.

I knew it would be a tussle getting this all to work smoothly but it is

starting to give me a case of the red ass

please any help will be appreciated but please don’t guess just real

experience !

Ken, you need to add the following to your Gemfile:

gem “authlogic”, :git => “git://github.com/binarylogic/authlogic.git

Then you’ll invoke the following command:

$ bundle install

Good luck,

-Conrad

Ken, you need to add the following to your Gemfile:

gem "authlogic", :git => "git://github.com/binarylogic/authlogic.git"

Then you'll invoke the following command:

$ bundle install

Good luck,

-Conrad

Thanks conrad, The following is what I am getting - do I need a configuration for "git"

Fetching git://github.com/binarylogic/authlogic.git sh: git: command not found An error has occurred in git. Cannot complete bundling. Macintosh-3:WAC kenfoust$

You need to install git, or add it to your path environment variable in case you have already installed it.

All the best,

Fidel.

Fidel Viegas wrote: