I've been following a guide to integrate the oauth plugin with my rails project. I'm working in windows.
So far I have installed the Oauth gem and the Oauth-plugin gem using the following code:
gem install oauth
gem install oauth-plugin
both of which have completed successfully. It then says to run the following code:
./script/generate oauth_consumer --haml
which doesn't work, probably since I'm using rails 3.1 so instead I ran:
rails generate oauth_consumer --haml
which returns the following message:
could not find generator auth_consumer
Any ideas what I'm missing? I'm kind of lost and cannot find a better guide.
a better guide would also help...