-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
118 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
/log/*.log | ||
/tmp | ||
vendor/ruby | ||
bundler_stubs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
--colour | ||
--drb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Place all the behaviors and hooks related to the matching controller here. | ||
# All this logic will automatically be available in application.js. | ||
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Place all the styles related to the StaticPages controller here. | ||
// They will automatically be included in application.css. | ||
// You can use Sass (SCSS) here: http://sass-lang.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class StaticPagesController < ApplicationController | ||
def home | ||
end | ||
|
||
def help | ||
end | ||
|
||
def about | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
module StaticPagesHelper | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<%= provide(:title, 'About Us') %> | ||
<h1>About Us</h1> | ||
<p> | ||
The <a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
is a project to make a book and screencasts to teach web development | ||
with <a href="http://rubyonrails.org/">Ruby on Rails</a>. This | ||
is the sample application for the tutorial. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<%= provide(:title, 'Help') %> | ||
<h1>Help</h1> | ||
<p> | ||
Get help on the Ruby on Rails Tutorial at the | ||
<a href="http://railstutorial.org/help">Rails Tutorial help page</a>. | ||
To get help on this sample app, see the | ||
<a href="http://railstutorial.org/book">Rails Tutorial book</a>. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<%= provide(:title, 'Home') %> | ||
<h1>Sample App</h1> | ||
<p> | ||
This is the home page for the | ||
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a> | ||
sample application. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
require 'spec_helper' | ||
|
||
describe "Static pages" do | ||
|
||
describe "Home page" do | ||
|
||
it "should have the h1 'Sample App'" do | ||
visit '/static_pages/home' | ||
page.should have_selector('h1', :text => 'Sample App') | ||
end | ||
|
||
it "should have the title 'Home'" do | ||
visit '/static_pages/home' | ||
page.should have_selector('title', | ||
:text => "Ruby on Rails Tutorial Sample App | Home") | ||
end | ||
end | ||
|
||
describe "Help page" do | ||
|
||
it "should have the h1 'Help'" do | ||
visit '/static_pages/help' | ||
page.should have_selector('h1', :text => 'Help') | ||
end | ||
|
||
it "should have the title 'Help'" do | ||
visit '/static_pages/help' | ||
page.should have_selector('title', | ||
:text => "Ruby on Rails Tutorial Sample App | Help") | ||
end | ||
end | ||
|
||
describe "About page" do | ||
|
||
it "should have the h1 'About'" do | ||
visit '/static_pages/about' | ||
page.should have_selector('h1', :text => 'About Us') | ||
end | ||
|
||
it "should have the title 'About Us'" do | ||
visit '/static_pages/about' | ||
page.should have_selector('title', | ||
:text => "Ruby on Rails Tutorial Sample App | About Us") | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.