Skip to content

Commit 6571ad2

Browse files
committed
update links from railsapps.github.com to railsapps.github.io
1 parent 3f77590 commit 6571ad2

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

README.textile

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
h1. !http://railsapps.github.com/images/rails-36x36.jpg(Rails Application for Devise with RSpec and Cucumber)! Rails App for Devise with RSpec and Cucumber
1+
h1. !http://railsapps.github.io/images/rails-36x36.jpg(Rails Application for Devise with RSpec and Cucumber)! Rails App for Devise with RSpec and Cucumber
22

33
Rails 3.2 example application shows how to use "Devise":http://github.com/plataformatec/devise with "RSpec":http://rspec.info/ and "Cucumber":http://cukes.info/.
44

55
* "Devise":http://github.com/plataformatec/devise gives you ready-made authentication and user management.
66
* "RSpec":http://rspec.info/ is a popular alternative to the Test::Unit testing framework.
77
* "Cucumber":http://cukes.info/ is used for Behaviour Driven Development.
88

9-
Best of all, there's a "detailed tutorial":http://railsapps.github.com/tutorial-rails-devise-rspec-cucumber.html to show how it's built.
9+
Best of all, there's a "detailed tutorial":http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html to show how it's built.
1010

11-
You can build this application in only a few minutes using the "Rails Composer":http://railsapps.github.com/rails-composer/ tool.
11+
You can build this application in only a few minutes using the "Rails Composer":http://railsapps.github.io/rails-composer/ tool.
1212

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

@@ -18,17 +18,17 @@ h2. Tutorial
1818

1919
A complete tutorial is available:
2020

21-
h4. "View the Tutorial":http://railsapps.github.com/tutorial-rails-devise-rspec-cucumber.html
21+
h4. "View the Tutorial":http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html
2222

23-
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 recommended resources for "Rails":http://railsapps.github.com/rails.html.
23+
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 recommended resources for "Rails":http://railsapps.github.io/rails.html.
2424

2525
h2. What Is Implemented -- and What Is Not
2626

2727
This is a demonstration application that allows you to visit a home page and see a list of users. With the default user's email and password (supplied below), you can log in and view details for each user. Devise provides user management so a visitor can register with an email address and password and create an account. Devise provides authentication so access to the site can be limited to users who are registered and logged in.
2828

2929
h4. Similar Examples and Tutorials
3030

31-
This is one in a series of Rails example apps and tutorials from the "RailsApps Project":http://railsapps.github.com/. See a list of additional "Rails examples, tutorials, and starter apps":http://railsapps.github.com/rails-examples-tutorials.html.
31+
This is one in a series of Rails example apps and tutorials from the "RailsApps Project":http://railsapps.github.io/. See a list of additional "Rails examples, tutorials, and starter apps":http://railsapps.github.io/rails-examples-tutorials.html.
3232

3333
This example application uses ActiveRecord and a SQLite database. You can use the Mongoid ORM with the MongoDB datastore instead, for faster development without schemas or migrations. The "rails3-mongoid-devise":https://github.com/RailsApps/rails3-mongoid-devise example app and tutorial shows how to set up Devise and Mongoid with RSpec and Cucumber.
3434

@@ -43,7 +43,7 @@ Before generating your application, you will need:
4343
* The Ruby language (version 1.9.3 or 2.0.0)
4444
* The Rails gem (version 3.2)
4545

46-
See the article "Installing Rails":http://railsapps.github.com/installing-rails.html for advice about updating Rails and your development environment.
46+
See the article "Installing Rails":http://railsapps.github.io/installing-rails.html for advice about updating Rails and your development environment.
4747

4848
h2. Getting the Application
4949

@@ -61,11 +61,11 @@ If you want to copy and customize the app with changes that are only useful for
6161
$ git clone git://github.com/RailsApps/rails3-devise-rspec-cucumber.git
6262
</pre>
6363

64-
You'll need "git":http://git-scm.com/ on your machine. See "Rails and Git":http://railsapps.github.com/rails-git.html.
64+
You'll need "git":http://git-scm.com/ on your machine. See "Rails and Git":http://railsapps.github.io/rails-git.html.
6565

6666
h3. Generate
6767

68-
If you want to use the project as a starter app, use the "Rails Composer":http://railsapps.github.com/rails-composer/ tool to generate a new version of the example app. You'll be able to give it your own project name when you generate the app. Generating the application gives you many additional options.
68+
If you want to use the project as a starter app, use the "Rails Composer":http://railsapps.github.io/rails-composer/ tool to generate a new version of the example app. You'll be able to give it your own project name when you generate the app. Generating the application gives you many additional options.
6969

7070
To build the example application, run the command:
7171

@@ -123,19 +123,19 @@ Use the default WEBrick server for convenience. If you plan to deploy to Heroku,
123123

124124
h4. Template Engine
125125

126-
The example application uses the default "ERB" Rails template engine. Optionally, you can use another template engine, such as Haml or Slim. See instructions for "Haml and Rails":http://railsapps.github.com/rails-haml.html.
126+
The example application uses the default "ERB" Rails template engine. Optionally, you can use another template engine, such as Haml or Slim. See instructions for "Haml and Rails":http://railsapps.github.io/rails-haml.html.
127127

128128
h4. Other Choices
129129

130130
Set a robots.txt file to ban spiders if you want to keep your new site out of Google search results.
131131

132-
It is a good idea to use "rvm":https://rvm.io/, the Ruby Version Manager, and create a project-specific rvm gemset (not available on Windows). See "Installing Rails":http://railsapps.github.com/installing-rails.html.
132+
It is a good idea to use "rvm":https://rvm.io/, the Ruby Version Manager, and create a project-specific rvm gemset (not available on Windows). See "Installing Rails":http://railsapps.github.io/installing-rails.html.
133133

134134
If you choose to create a GitHub repository, the generator will prompt you for a GitHub username and password.
135135

136136
h4. Troubleshooting
137137

138-
If you get an error "OpenSSL certificate verify failed" or "Gem::RemoteFetcher::FetchError: SSL_connect" see the article "OpenSSL errors and Rails":http://railsapps.github.com/openssl-certificate-verify-failed.html.
138+
If you get an error "OpenSSL certificate verify failed" or "Gem::RemoteFetcher::FetchError: SSL_connect" see the article "OpenSSL errors and Rails":http://railsapps.github.io/openssl-certificate-verify-failed.html.
139139

140140
If you get an error like this:
141141

@@ -147,7 +147,7 @@ Error: You have already activated ..., but your Gemfile requires ....
147147
Using bundle exec may solve this.
148148
</pre>
149149

150-
It's due to conflicting gem versions. See the article "Rails Error: “You have already activated (…)”":http://railsapps.github.com/rails-error-you-have-already-activated.html.
150+
It's due to conflicting gem versions. See the article "Rails Error: “You have already activated (…)”":http://railsapps.github.io/rails-error-you-have-already-activated.html.
151151

152152
Other problems? Check the "issues":https://github.com/RailsApps/rails3-devise-rspec-cucumber/issues.
153153

@@ -161,7 +161,7 @@ h3. Install the Required Gems
161161

162162
Check the Gemfile to see which gems are used by this application.
163163

164-
If you used the "Rails Composer":http://railsapps.github.com/rails-composer/ tool to generate the example app, the application template script has already run the @bundle install@ command.
164+
If you used the "Rails Composer":http://railsapps.github.io/rails-composer/ tool to generate the example app, the application template script has already run the @bundle install@ command.
165165

166166
If not, you should run the @bundle install@ command to install the required gems on your computer:
167167

@@ -177,11 +177,11 @@ $ gem list
177177

178178
Keep in mind that you have installed these gems locally. When you deploy the app to another server, the same gems (and versions) must be available.
179179

180-
I recommend using "rvm":https://rvm.io/, the Ruby Version Manager, to create a project-specific gemset for the application. See the article "Installing Rails":http://railsapps.github.com/installing-rails.html.
180+
I recommend using "rvm":https://rvm.io/, the Ruby Version Manager, to create a project-specific gemset for the application. See the article "Installing Rails":http://railsapps.github.io/installing-rails.html.
181181

182182
h3. Configure Email
183183

184-
This example application doesn't send email messages. However, if you want your application to send email messages (for example, if you plan to install the Devise @:confirmable@ module) you must configure the application for your email account. See the article "Send Email with Rails":http://railsapps.github.com/rails-send-email.html.
184+
This example application doesn't send email messages. However, if you want your application to send email messages (for example, if you plan to install the Devise @:confirmable@ module) you must configure the application for your email account. See the article "Send Email with Rails":http://railsapps.github.io/rails-send-email.html.
185185

186186
h3. Configure Devise
187187

@@ -191,13 +191,13 @@ You can modify the configuration file for Devise if you want to use something ot
191191

192192
h3. Configuration File
193193

194-
The application uses the "figaro gem":https://github.com/laserlemon/figaro to set environment variables. Credentials for your administrator account and email account are set in the *config/application.yml* file. The *.gitignore* file prevents the *config/application.yml* file from being saved in the git repository so your credentials are kept private. See the article "Rails Environment Variables":http://railsapps.github.com/rails-environment-variables.html for more information.
194+
The application uses the "figaro gem":https://github.com/laserlemon/figaro to set environment variables. Credentials for your administrator account and email account are set in the *config/application.yml* file. The *.gitignore* file prevents the *config/application.yml* file from being saved in the git repository so your credentials are kept private. See the article "Rails Environment Variables":http://railsapps.github.io/rails-environment-variables.html for more information.
195195

196196
Modify the file *config/application.yml*:
197197

198198
<pre>
199199
# Add account credentials and API keys here.
200-
# See http://railsapps.github.com/rails-environment-variables.html
200+
# See http://railsapps.github.io/rails-environment-variables.html
201201
# This file should be listed in .gitignore to keep your settings secret!
202202
# Each entry sets a local environment variable and overrides ENV variables in the Unix shell.
203203
# For example, setting:
@@ -212,7 +212,7 @@ ADMIN_EMAIL: user@example.com
212212
ADMIN_PASSWORD: changeme
213213
</pre>
214214

215-
If you are planning to customize the application to send email using a Gmail account, you can add the user name and password needed for the application to send email. See the article "Send Email with Rails":http://railsapps.github.com/rails-send-email.html.
215+
If you are planning to customize the application to send email using a Gmail account, you can add the user name and password needed for the application to send email. See the article "Send Email with Rails":http://railsapps.github.io/rails-send-email.html.
216216

217217
If you wish, set your name, email address, and password for the first user's account. If you prefer, you can use the default to sign in to the application and edit the account after deployment. It is always a good idea to change the password after the application is deployed.
218218

@@ -299,7 +299,7 @@ If you test the app by starting the web server and then leave the server running
299299

300300
h2. Deploy to Heroku
301301

302-
For your convenience, here is a "Tutorial for Rails on Heroku":http://railsapps.github.com/rails-heroku-tutorial.html. Heroku provides low cost, easily configured Rails application hosting.
302+
For your convenience, here is a "Tutorial for Rails on Heroku":http://railsapps.github.io/rails-heroku-tutorial.html. Heroku provides low cost, easily configured Rails application hosting.
303303

304304
h2. Customizing
305305

@@ -325,11 +325,11 @@ Problems? Check the "issues":https://github.com/RailsApps/rails3-devise-rspec-cu
325325

326326
h4. Problems with "Certificate Verify Failed"
327327

328-
Are you getting an error "OpenSSL certificate verify failed" when you try to generate a new Rails app from an application template? See suggestions to resolve the error "Certificate Verify Failed":http://railsapps.github.com/openssl-certificate-verify-failed.html.
328+
Are you getting an error "OpenSSL certificate verify failed" when you try to generate a new Rails app from an application template? See suggestions to resolve the error "Certificate Verify Failed":http://railsapps.github.io/openssl-certificate-verify-failed.html.
329329

330330
h2. Documentation and Support
331331

332-
The "tutorial":http://railsapps.github.com/tutorial-rails-devise-rspec-cucumber.html provides additional documentation.
332+
The "tutorial":http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html provides additional documentation.
333333

334334
For a Devise introduction, Ryan Bates offers a "Railscast on Devise":http://railscasts.com/episodes/209-introducing-devise. You can find documentation for "Devise":http://github.com/plataformatec/devise at "http://github.com/plataformatec/devise":http://github.com/plataformatec/devise. There is an active "Devise mailing list":http://groups.google.com/group/plataformatec-devise and you can submit "Devise issues":http://github.com/plataformatec/devise/issues at GitHub.
335335

@@ -367,16 +367,16 @@ Copyright © 2012 Daniel Kehoe
367367
h2. Useful Links
368368

369369
|_. Getting Started |_. Articles |_. Tutorials |
370-
| "Rails Tutorial":https://tutorials.railsapps.org/rails-tutorial (recommendations) | "Heroku and Rails":http://railsapps.github.com/rails-heroku-tutorial.html | "Devise with CanCan and Twitter Bootstrap":https://tutorials.railsapps.org/rails3-bootstrap-devise-cancan |
371-
| "Rails":http://railsapps.github.com/rails.html (resources)| "Twitter Bootstrap and Rails":http://railsapps.github.com/twitter-bootstrap-rails.html | "Rails Membership Site with Stripe":https://tutorials.railsapps.org/rails-stripe-membership-saas |
372-
| "Installing Rails":http://railsapps.github.com/installing-rails.html | "JavaScript and Rails":http://railsapps.github.com/rails-javascript-include-external.html | "Rails Subscription Site with Recurly":https://tutorials.railsapps.org/rails-recurly-subscription-saas |
373-
| "Updating Rails":http://railsapps.github.com/updating-rails.html | "Rails Environment Variables":http://railsapps.github.com/rails-environment-variables.html | "Startup Prelaunch Signup Application":http://railsapps.github.com/tutorial-rails-prelaunch-signup.html |
374-
| "Rails Composer":http://railsapps.github.com/rails-composer/ | "Git and GitHub with Rails":http://railsapps.github.com/rails-git.html | "Devise with RSpec and Cucumber":http://railsapps.github.com/tutorial-rails-devise-rspec-cucumber.html |
375-
| "Rails Examples":http://railsapps.github.com/ | "Send Email with Rails":http://railsapps.github.com/rails-send-email.html | "Devise with Mongoid":http://railsapps.github.com/tutorial-rails-mongoid-devise.html |
376-
| "Rails Starter Apps":http://railsapps.github.com/rails-examples-tutorials.html | "Haml and Rails":http://railsapps.github.com/rails-haml.html | "OmniAuth with Mongoid":http://railsapps.github.com/tutorial-rails-mongoid-omniauth.html |
377-
| | "Rails Application Layout":http://railsapps.github.com/rails-default-application-layout.html | "Subdomains with Devise":http://railsapps.github.com/tutorial-rails-subdomains.html |
378-
| | "HTML5 Boilerplate for Rails":http://railsapps.github.com/rails-html5-boilerplate.html | |
379-
| | "Example Gemfiles for Rails":http://railsapps.github.com/rails-3-2-example-gemfile.html | |
380-
| | "Rails Application Templates":http://railsapps.github.com/rails-application-templates.html | |
370+
| "Rails Tutorial":https://tutorials.railsapps.org/rails-tutorial (recommendations) | "Heroku and Rails":http://railsapps.github.io/rails-heroku-tutorial.html | "Devise with CanCan and Twitter Bootstrap":https://tutorials.railsapps.org/rails3-bootstrap-devise-cancan |
371+
| "Rails":http://railsapps.github.io/rails.html (resources)| "Twitter Bootstrap and Rails":http://railsapps.github.io/twitter-bootstrap-rails.html | "Rails Membership Site with Stripe":https://tutorials.railsapps.org/rails-stripe-membership-saas |
372+
| "Installing Rails":http://railsapps.github.io/installing-rails.html | "JavaScript and Rails":http://railsapps.github.io/rails-javascript-include-external.html | "Rails Subscription Site with Recurly":https://tutorials.railsapps.org/rails-recurly-subscription-saas |
373+
| "Updating Rails":http://railsapps.github.io/updating-rails.html | "Rails Environment Variables":http://railsapps.github.io/rails-environment-variables.html | "Startup Prelaunch Signup Application":http://railsapps.github.io/tutorial-rails-prelaunch-signup.html |
374+
| "Rails Composer":http://railsapps.github.io/rails-composer/ | "Git and GitHub with Rails":http://railsapps.github.io/rails-git.html | "Devise with RSpec and Cucumber":http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html |
375+
| "Rails Examples":http://railsapps.github.io/ | "Send Email with Rails":http://railsapps.github.io/rails-send-email.html | "Devise with Mongoid":http://railsapps.github.io/tutorial-rails-mongoid-devise.html |
376+
| "Rails Starter Apps":http://railsapps.github.io/rails-examples-tutorials.html | "Haml and Rails":http://railsapps.github.io/rails-haml.html | "OmniAuth with Mongoid":http://railsapps.github.io/tutorial-rails-mongoid-omniauth.html |
377+
| | "Rails Application Layout":http://railsapps.github.io/rails-default-application-layout.html | "Subdomains with Devise":http://railsapps.github.io/tutorial-rails-subdomains.html |
378+
| | "HTML5 Boilerplate for Rails":http://railsapps.github.io/rails-html5-boilerplate.html | |
379+
| | "Example Gemfiles for Rails":http://railsapps.github.io/rails-3-2-example-gemfile.html | |
380+
| | "Rails Application Templates":http://railsapps.github.io/rails-application-templates.html | |
381381

382382
!https://cruel-carlota.pagodabox.com/725ecc2fa67994cfce131fe2f3322eb7(githalytics.com alpha)!

config/application.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Add account credentials and API keys here.
2-
# See http://railsapps.github.com/rails-environment-variables.html
2+
# See http://railsapps.github.io/rails-environment-variables.html
33
# This file should be listed in .gitignore to keep your settings secret!
44
# Each entry sets a local environment variable and overrides ENV variables in the Unix shell.
55
# For example, setting:

config/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Add account credentials and API keys here.
2-
# See http://railsapps.github.com/rails-environment-variables.html
2+
# See http://railsapps.github.io/rails-environment-variables.html
33
# This file should be listed in .gitignore to keep your settings secret!
44
# Each entry sets a local environment variable and overrides ENV variables in the Unix shell.
55
# For example, setting:

db/seeds.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
77
# Mayor.create(name: 'Emanuel', city: cities.first)
88
# Environment variables (ENV['...']) are set in the file config/application.yml.
9-
# See http://railsapps.github.com/rails-environment-variables.html
9+
# See http://railsapps.github.io/rails-environment-variables.html
1010
puts 'DEFAULT USERS'
1111
user = User.find_or_create_by_email :name => ENV['ADMIN_NAME'].dup, :email => ENV['ADMIN_EMAIL'].dup, :password => ENV['ADMIN_PASSWORD'].dup, :password_confirmation => ENV['ADMIN_PASSWORD'].dup
1212
puts 'user: ' << user.name

public/humans.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
Software: Ruby on Rails
1818

1919
/* GENERATED BY */
20-
RailsApps application template: http://railsapps.github.com/
20+
RailsApps application template: http://railsapps.github.io/

0 commit comments

Comments
 (0)