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 !

On Tue, Mar 23, 2010 at 6:50 PM, Ken F. [email protected] wrote:

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$

Fidel V. wrote:

On Wed, Mar 24, 2010 at 2:20 PM, Ken F. [email protected] wrote:

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.

thanks - I found it and installed it and it worked !!!
Now I will try the authlogic tutorial

On Wed, Mar 24, 2010 at 2:20 PM, Ken F. [email protected] wrote:

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.