How do I include the restful_authentication plugin in my git repository?

How can I add the plugin http://github.com/technoweenie/restful-authentication/tree/master to a Rails project and push it to the git repository? I need this to be project related.

I tried several times but it was ignored by git.

Thank.

0


source to share


3 answers


From the README:

  • either use git clone git: //github.com/technoweenie/restful-authentication.git restful_authentication
  • or rename the plugins directory as restful_authentication after extracting it.


You did it?

After doing a git clone, you'll want to rm -rf restful_authentication/.git

make the project happy to add it (or use submodules).

+4


source


In any case, the git status doesn't tell you anything to add, it's as if it doesn't see.



0


source


@Dustin most likely nailed your problem.

Also note that if you don't already have a "lib" directory in your project, I found that the generator will fail with an error:

ruby script/generate authenticated user sessions 

      

So first mkdir lib.

I posted a restful_authentication + openid narration that covers these details and might help a little.

0


source







All Articles