Skip to content

Commit

Permalink
adding episode 242
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed Nov 29, 2010
1 parent ca6a510 commit 7451c6a
Show file tree
Hide file tree
Showing 70 changed files with 10,284 additions and 0 deletions.
14 changes: 14 additions & 0 deletions episode-242/README
@@ -0,0 +1,14 @@
Railscasts Episode #242: Thor

http://railscasts.com/episodes/242

Commands

thor help
thor list
thor setup:config
thor setup:config --force
thor setup:config private.yml --force
thor install lib/tasks/setup.thor
thor setup:populate
thor setup:populate --count 5
4 changes: 4 additions & 0 deletions episode-242/blog/.gitignore
@@ -0,0 +1,4 @@
.bundle
db/*.sqlite3
log/*.log
tmp/**/*
5 changes: 5 additions & 0 deletions episode-242/blog/Gemfile
@@ -0,0 +1,5 @@
source 'http://rubygems.org'

gem 'rails', '3.0.3'
gem 'sqlite3-ruby', '1.2.5', :require => 'sqlite3'
gem 'nifty-generators'
75 changes: 75 additions & 0 deletions episode-242/blog/Gemfile.lock
@@ -0,0 +1,75 @@
GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.3)
actionpack (= 3.0.3)
mail (~> 2.2.9)
actionpack (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.4)
rack (~> 1.2.1)
rack-mount (~> 0.6.13)
rack-test (~> 0.5.6)
tzinfo (~> 0.3.23)
activemodel (3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
i18n (~> 0.4)
activerecord (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activeresource (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
activesupport (3.0.3)
arel (2.0.4)
builder (2.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
i18n (0.4.2)
mail (2.2.10)
activesupport (>= 2.3.6)
i18n (~> 0.4.1)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
nifty-generators (0.4.2)
polyglot (0.3.1)
rack (1.2.1)
rack-mount (0.6.13)
rack (>= 1.0.0)
rack-test (0.5.6)
rack (>= 1.0)
rails (3.0.3)
actionmailer (= 3.0.3)
actionpack (= 3.0.3)
activerecord (= 3.0.3)
activeresource (= 3.0.3)
activesupport (= 3.0.3)
bundler (~> 1.0)
railties (= 3.0.3)
railties (3.0.3)
actionpack (= 3.0.3)
activesupport (= 3.0.3)
rake (>= 0.8.7)
thor (~> 0.14.4)
rake (0.8.7)
sqlite3-ruby (1.2.5)
thor (0.14.6)
treetop (1.4.9)
polyglot (>= 0.3.1)
tzinfo (0.3.23)

PLATFORMS
ruby

DEPENDENCIES
nifty-generators
rails (= 3.0.3)
sqlite3-ruby (= 1.2.5)
1 change: 1 addition & 0 deletions episode-242/blog/README
@@ -0,0 +1 @@
Example Railscasts Application
7 changes: 7 additions & 0 deletions episode-242/blog/Rakefile
@@ -0,0 +1,7 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rake'

Blog::Application.load_tasks
3 changes: 3 additions & 0 deletions episode-242/blog/app/controllers/application_controller.rb
@@ -0,0 +1,3 @@
class ApplicationController < ActionController::Base
protect_from_forgery
end
45 changes: 45 additions & 0 deletions episode-242/blog/app/controllers/articles_controller.rb
@@ -0,0 +1,45 @@
class ArticlesController < ApplicationController
def index
@articles = Article.all
end

def show
@article = Article.find(params[:id])
@comment = Comment.new(:article_id => @article.id)
end

def new
@article = Article.new
end

def create
@article = Article.new(params[:article])
if @article.save
flash[:notice] = "Successfully created article."
redirect_to @article
else
render :action => 'new'
end
end

def edit
@article = Article.find(params[:id])
end

def update
@article = Article.find(params[:id])
if @article.update_attributes(params[:article])
flash[:notice] = "Successfully updated article."
redirect_to @article
else
render :action => 'edit'
end
end

def destroy
@article = Article.find(params[:id])
@article.destroy
flash[:notice] = "Successfully destroyed article."
redirect_to articles_url
end
end
15 changes: 15 additions & 0 deletions episode-242/blog/app/controllers/comments_controller.rb
@@ -0,0 +1,15 @@
class CommentsController < ApplicationController
def new
@comment = Comment.new
end

def create
@comment = Comment.new(params[:comment])
if @comment.save
flash[:notice] = "Successfully created comment."
redirect_to root_url
else
render :action => 'new'
end
end
end
2 changes: 2 additions & 0 deletions episode-242/blog/app/helpers/application_helper.rb
@@ -0,0 +1,2 @@
module ApplicationHelper
end
2 changes: 2 additions & 0 deletions episode-242/blog/app/helpers/articles_helper.rb
@@ -0,0 +1,2 @@
module ArticlesHelper
end
2 changes: 2 additions & 0 deletions episode-242/blog/app/helpers/comments_helper.rb
@@ -0,0 +1,2 @@
module CommentsHelper
end
23 changes: 23 additions & 0 deletions episode-242/blog/app/helpers/error_messages_helper.rb
@@ -0,0 +1,23 @@
module ErrorMessagesHelper
# Render error messages for the given objects. The :message and :header_message options are allowed.
def error_messages_for(*objects)
options = objects.extract_options!
options[:header_message] ||= "Invalid Fields"
options[:message] ||= "Correct the following errors and try again."
messages = objects.compact.map { |o| o.errors.full_messages }.flatten
unless messages.empty?
content_tag(:div, :class => "error_messages") do
list_items = messages.map { |msg| content_tag(:li, msg) }
content_tag(:h2, options[:header_message]) + content_tag(:p, options[:message]) + content_tag(:ul, list_items.join.html_safe)
end
end
end

module FormBuilderAdditions
def error_messages(options = {})
@template.error_messages_for(@object, options)
end
end
end

ActionView::Helpers::FormBuilder.send(:include, ErrorMessagesHelper::FormBuilderAdditions)
22 changes: 22 additions & 0 deletions episode-242/blog/app/helpers/layout_helper.rb
@@ -0,0 +1,22 @@
# These helper methods can be called in your template to set variables to be used in the layout
# This module should be included in all views globally,
# to do so you may need to add this line to your ApplicationController
# helper :layout
module LayoutHelper
def title(page_title, show_title = true)
content_for(:title) { page_title.to_s }
@show_title = show_title
end

def show_title?
@show_title
end

def stylesheet(*args)
content_for(:head) { stylesheet_link_tag(*args) }
end

def javascript(*args)
content_for(:head) { javascript_include_tag(*args) }
end
end
4 changes: 4 additions & 0 deletions episode-242/blog/app/models/article.rb
@@ -0,0 +1,4 @@
class Article < ActiveRecord::Base
attr_accessible :name, :content
has_many :comments
end
4 changes: 4 additions & 0 deletions episode-242/blog/app/models/comment.rb
@@ -0,0 +1,4 @@
class Comment < ActiveRecord::Base
attr_accessible :article_id, :name, :content
belongs_to :article
end
12 changes: 12 additions & 0 deletions episode-242/blog/app/views/articles/_form.html.erb
@@ -0,0 +1,12 @@
<%= form_for @article do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :content %><br />
<%= f.text_area :content %>
</p>
<p><%= f.submit %></p>
<% end %>
8 changes: 8 additions & 0 deletions episode-242/blog/app/views/articles/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Article" %>
<%= render 'form' %>

<p>
<%= link_to "Show", @article %> |
<%= link_to "View All", articles_path %>
</p>
14 changes: 14 additions & 0 deletions episode-242/blog/app/views/articles/index.html.erb
@@ -0,0 +1,14 @@
<% title "Articles" %>

<div id="articles">
<% for article in @articles %>
<h2>
<%= link_to article.name, article %>
<span class="comments">(<%= pluralize(article.comments.size, 'comment') %>)</span>
</h2>
<div class="created_at">on <%= article.created_at.strftime('%b %d, %Y') %></div>
<div class="content"><%= simple_format(article.content) %></div>
<% end %>
</div>

<p><%= link_to "New Article", new_article_path %></p>
5 changes: 5 additions & 0 deletions episode-242/blog/app/views/articles/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Article" %>
<%= render 'form' %>

<p><%= link_to "Back to List", articles_path %></p>
23 changes: 23 additions & 0 deletions episode-242/blog/app/views/articles/show.html.erb
@@ -0,0 +1,23 @@
<% title @article.name %>
<%= simple_format @article.content %>

<p><%= link_to "Back to Articles", articles_path %></p>

<% unless @article.comments.empty? %>
<h2><%= pluralize(@article.comments.size, 'comment') %></h2>

<div id="comments">
<% for comment in @article.comments %>
<div class="comment">
<strong><%= comment.name %></strong>
<em>on <%= comment.created_at.strftime('%b %d, %Y at %I:%M %p') %></em>
<%= simple_format comment.content %>
</div>
<% end %>
</div>
<% end %>

<h3>Add your comment:</h3>

<%= render :partial => 'comments/form' %>
13 changes: 13 additions & 0 deletions episode-242/blog/app/views/comments/_form.html.erb
@@ -0,0 +1,13 @@
<%= form_for @comment do |f| %>
<%= f.error_messages %>
<%= f.hidden_field :article_id %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :content, "Comment" %><br />
<%= f.text_area :content, :rows => '12', :cols => 35 %>
</p>
<p><%= f.submit %></p>
<% end %>
3 changes: 3 additions & 0 deletions episode-242/blog/app/views/comments/new.html.erb
@@ -0,0 +1,3 @@
<% title "New Comment" %>
<%= render "form" %>
19 changes: 19 additions & 0 deletions episode-242/blog/app/views/layouts/application.html.erb
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title><%= yield(:title) || "Untitled" %></title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
<%= yield(:head) %>
</head>
<body>
<div id="container">
<% flash.each do |name, msg| %>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<% end %>
<%= content_tag :h1, yield(:title) if show_title? %>
<%= yield %>
</div>
</body>
</html>
4 changes: 4 additions & 0 deletions episode-242/blog/config.ru
@@ -0,0 +1,4 @@
# This file is used by Rack-based servers to start the application.

require ::File.expand_path('../config/environment', __FILE__)
run Blog::Application
42 changes: 42 additions & 0 deletions episode-242/blog/config/application.rb
@@ -0,0 +1,42 @@
require File.expand_path('../boot', __FILE__)

require 'rails/all'

# If you have a Gemfile, require the gems listed there, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler)

module Blog
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.

# Custom directories with classes and modules you want to be autoloadable.
# config.autoload_paths += %W(#{config.root}/extras)

# Only load the plugins named here, in the order given (default is alphabetical).
# :all can be used as a placeholder for all plugins not explicitly named.
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]

# Activate observers that should always be running.
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer

# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
config.time_zone = 'Pacific Time (US & Canada)'

# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de

# JavaScript files you want as :defaults (application.js is always included).
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)

# Configure the default encoding used in templates for Ruby 1.9.
config.encoding = "utf-8"

# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
end
end

0 comments on commit 7451c6a

Please sign in to comment.