Skip to content

Commit

Permalink
update README to point to new locations
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuity committed May 15, 2011
1 parent d6007e8 commit b2f1f10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Tutorial

A complete "walkthrough" tutorial is available on the GitHub wiki:

https://github.com/fortuity/rails3-devise-rspec-cucumber/wiki/Tutorial
https://github.com/railsapps/rails3-devise-rspec-cucumber/wiki/Tutorial

________________________

See the README file on GitHub

For more information, please see the updated README file on GitHub:

https://github.com/fortuity/rails3-devise-rspec-cucumber
https://github.com/railsapps/rails3-devise-rspec-cucumber

________________________

Expand Down
25 changes: 10 additions & 15 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ h1. Rails3 + Devise + RSpec + Cucumber

This is an example application for Rails 3.0 or Rails 3.1 that shows how to use "Devise":http://github.com/plataformatec/devise with "RSpec":http://rspec.info/ and "Cucumber":http://cukes.info/. Devise gives you ready-made authentication and user management. RSpec is a popular alternative to the Test::Unit testing framework. Cucumber is often used with RSpec for Behaviour Driven Development.

Best of all, there's a "detailed tutorial":https://github.com/fortuity/rails3-devise-rspec-cucumber/wiki/Tutorial (walk-through) to show how it's built.
Best of all, there's a "detailed tutorial":https://github.com/railsapps/rails3-devise-rspec-cucumber/wiki/Tutorial (walk-through) to show how it's built.

You can clone this app or generate a new Rails application using this app as a template.

Any issues? Please create an "Issue":http://github.com/fortuity/rails3-devise-rspec-cucumber/issues on GitHub.
Any issues? Please create a "GitHub issue":http://github.com/railsapps/rails3-devise-rspec-cucumber/issues.

h2. !http://twitter-badges.s3.amazonaws.com/t_logo-a.png(Follow on Twitter)!:http://www.twitter.com/rails_apps Follow on Twitter

Expand All @@ -19,9 +19,9 @@ h2. "Building It" Tutorial

A complete walkthrough tutorial for Rails 3.0 or Rails 3.1 is available on the GitHub wiki:

h4. "View the Tutorial":https://github.com/fortuity/rails3-devise-rspec-cucumber/wiki/Tutorial
h4. "View the Tutorial":https://github.com/railsapps/rails3-devise-rspec-cucumber/wiki/Tutorial

The tutorial documents each step to follow to create the application. Every step is documented concisely, so a complete beginner can create this application without any additional knowledge. However, no explanation is offered for any of the steps, so if you are a beginner, you’re advised to look for an introduction to Rails elsewhere.
The tutorial documents each step to follow to create the application. Every step is documented concisely, so a complete beginner can create this application without any additional knowledge. However, no explanation is offered for any of the steps, so if you are a beginner, you’re advised to look for an introduction to Rails elsewhere. See a list of "Rails books and references":http://railsapps.github.com/rails-books.html for recommended reading.

If you simply wish to modify the application for your own project, you can download the application and set it up as described below, without following the tutorial.

Expand All @@ -33,12 +33,7 @@ h4. Similar Examples and Tutorials

If you'd like to use the Mongoid ORM with the MongoDB datastore instead of ActiveRecord and a SQLite database, see the "rails3-mongoid-devise":https://github.com/fortuity/rails3-mongoid-devise example app and tutorial. Mongoid makes development quicker without schemas or migrations. The "rails3-mongoid-devise":https://github.com/fortuity/rails3-mongoid-devise example app and tutorial shows how to set up Devise and Mongoid with RSpec and Cucumber.

|_. Author |_. Example App |_. Comments |
| Plataformatec | "Devise":http://github.com/plataformatec/devise_example | Simple example using SQLite |
| Daniel Kehoe | "OmniAuth, Mongoid":https://github.com/fortuity/rails3-mongoid-omniauth | Detailed tutorial, app template, starter app, using MongoDB |
| Fernando Tapia Rico | "Devise, OmniAuth, Mongoid":https://github.com/fertapric/rails3-mongoid-devise-omniauth | With tutorial, using MongoDB |
| Andi Altendorfer | "Community Base Application (CBA)":http://github.com/iboard/CBA | Devise, OmniAuth, Mongoid, CanCan, Paperclip, etc. |
| Kristian Mandrup | "Cream":https://github.com/kristianmandrup/cream | Gem-based app generator for apps with Devise, many ORMs, CanCan |
See a list of similar "Rails examples, tutorials, and starter apps":http://railsapps.github.com/rails-examples-tutorials.html.

h2. Dependencies

Expand All @@ -61,7 +56,7 @@ h4. Downloading the Code

If you simply wish to examine the example code, you can download the code ("clone the repository") with the command

@$ git clone git://github.com/fortuity/rails3-devise-rspec-cucumber.git@
@$ git clone git://github.com/railsapps/rails3-devise-rspec-cucumber.git@

The source code is managed with Git (a version control system). You'll need Git on your machine (install it from "http://git-scm.com/":http://git-scm.com/).

Expand Down Expand Up @@ -94,7 +89,7 @@ The application generator template will ask you for your preferences:

h4. Use "Recipes" to Customize an Application Template

The "tutorial":https://github.com/fortuity/rails3-devise-rspec-cucumber/wiki/Tutorial shows how a customized application template can be assembled from "recipes." The application template was created using the "rails3_devise_wizard":https://github.com/fortuity/rails3_devise_wizard gem which provides a convenient way to assemble a reusable application template by selecting various "recipes" for popular Rails development packages.
The "tutorial":https://github.com/railsapps/rails3-devise-rspec-cucumber/wiki/Tutorial shows how a customized application template can be assembled from "recipes." The application template was created using the "rails3_devise_wizard":https://github.com/fortuity/rails3_devise_wizard gem which provides a convenient way to assemble a reusable application template by selecting various "recipes" for popular Rails development packages.

h4. Please Remember: Edit the README

Expand All @@ -114,7 +109,7 @@ The application uses the following gems. I recommend checking for newer versions
* cucumber-rails "(Check rubygems.org for a newer gem)":http://rubygems.org/gems/cucumber-rails
* capybara "(Check rubygems.org for a newer gem)":http://rubygems.org/gems/capybara

The app has been tested with the indicated versions. If you are able to build the app with a newer gem, please create an "issue":http://github.com/fortuity/rails3-devise-rspec-cucumber/issues on GitHub and I will update the app.
The app has been tested with the indicated versions. If you are able to build the app with a newer gem, please create an "issue":http://github.com/railsapps/rails3-devise-rspec-cucumber/issues on GitHub and I will update the app.

h3. Install the Required Gems

Expand Down Expand Up @@ -277,13 +272,13 @@ For a Devise introduction, Ryan Bates offers a "Railscast on Devise":http://rail

h4. Issues

Please create an "Issue":http://github.com/fortuity/rails3-devise-rspec-cucumber/issues on GitHub if you identify any problems or have suggestions for improvements.
Please create a "GitHub issue":http://github.com/railsapps/rails3-devise-rspec-cucumber/issues if you identify any problems or have suggestions for improvements.

h2. Contributing

If you make improvements to this application, please share with others.

Send the author a message, create an "issue":http://github.com/fortuity/rails3-devise-rspec-cucumber/issues, or fork the project and submit a pull request.
Send the author a message, create an "issue":http://github.com/railsapps/rails3-devise-rspec-cucumber/issues, or fork the project and submit a pull request.

If you add functionality to this application, create an alternative implementation, or build an application that is similar, please contact me and I'll add a note to the README so that others can find your work.

Expand Down

0 comments on commit b2f1f10

Please sign in to comment.