SlideShare a Scribd company logo
Junli Blog
 Cocoa on Rails
      3rd
    2011-7-18
Blog
Cocoa on-rails-3rd
>rails new blog
Gems


>cd blog
>bundle install
SQLite3
>rake db:create
Web

>rails server
or
>rails s
http://127.0.0.1:3000

127.0.0.1

3000
Say hello

>rails generate controller home index



app/views/home/index.html.erb

    index.html.erb

<h1> Hello, Junli </h1>
public/index.html
config/routes.rb

     root




root :to => “home#index”

    Rails     root            home controller
Post


>rails generate scaffold Post name:string
title:string content:text

rake db:migrate
Comment model


>rails generate model Comment
commenter:string body:text post:references

rake db:migrate

                  rails generate
comment.rb

      app/models/comment.rb

class Comment < ActiveRecord::Base

 belongs_to :post

end
Models


Models   (post)    (comment)
Models post.rb
post.rb

class Post < ActiveRecord::Base

...

      has_many :comments

end

             @post.comments
config/route.rb

resources :post do

 resources :comments

end
Controller



>rails generate controller Comments
Post show




app/views/posts/show.html.erb

http://dpaste.com/hold/570758/
CommentsController
                     create action


   class CommentsController < ApplicationController
  def create
    @post = Post.find(params[:post_id])
    @comment = @post.comments.create(params[:comment])
    redirect_to post_path(@post)
  end
end
Done




Post
Blog




https://github.com/snowdon/blog
Cocoa on-rails-3rd

More Related Content

What's hot (20)

KEY
Plug it on!... with railties
rails.mx
 
PDF
RoR 101: Session 3
Rory Gianni
 
PDF
RoR 101: Session 2
Rory Gianni
 
PPT
Redmine Betabeers SVQ
Ildefonso Montero
 
PDF
How angularjs saves rails
Michael He
 
PDF
AngularJS meets Rails
Elena Torró
 
ODP
RoR 101: Session 6
Rory Gianni
 
PDF
Adventurous Merb
Matt Todd
 
PDF
Web services with laravel
Confiz
 
PDF
Laravel Restful API and AngularJS
Blake Newman
 
PPT
Web service with Laravel
Abuzer Firdousi
 
PDF
RoR 101: Session 6
Rory Gianni
 
PPTX
Ruby On Grape
Andrii Furmanets
 
PDF
Building WordPress Client Side Applications with WP and WP-API - #wcmia
Roy Sivan
 
PPTX
Building RESTful APIs w/ Grape
Daniel Doubrovkine
 
PPTX
Laravel Beginners Tutorial 2
Vikas Chauhan
 
PDF
Be Happy With Ruby on Rails - Ecosystem
Lucas Renan
 
PDF
Rails engines in large apps
Enrico Teotti
 
PPTX
Laravel - Website Development in Php Framework.
SWAAM Tech
 
PPTX
Building an API using Grape
visnu priya
 
Plug it on!... with railties
rails.mx
 
RoR 101: Session 3
Rory Gianni
 
RoR 101: Session 2
Rory Gianni
 
Redmine Betabeers SVQ
Ildefonso Montero
 
How angularjs saves rails
Michael He
 
AngularJS meets Rails
Elena Torró
 
RoR 101: Session 6
Rory Gianni
 
Adventurous Merb
Matt Todd
 
Web services with laravel
Confiz
 
Laravel Restful API and AngularJS
Blake Newman
 
Web service with Laravel
Abuzer Firdousi
 
RoR 101: Session 6
Rory Gianni
 
Ruby On Grape
Andrii Furmanets
 
Building WordPress Client Side Applications with WP and WP-API - #wcmia
Roy Sivan
 
Building RESTful APIs w/ Grape
Daniel Doubrovkine
 
Laravel Beginners Tutorial 2
Vikas Chauhan
 
Be Happy With Ruby on Rails - Ecosystem
Lucas Renan
 
Rails engines in large apps
Enrico Teotti
 
Laravel - Website Development in Php Framework.
SWAAM Tech
 
Building an API using Grape
visnu priya
 

Viewers also liked (8)

PPTX
控制自己的情绪,或者,被 情绪控制
Xiaochun Shen
 
PPT
Cocoa on Rails 4th
Xiaochun Shen
 
PPT
The Presentation Secrets Of Stevejobs
Hamdan Agung R
 
PPT
Cocoa on-rails-5th
Xiaochun Shen
 
KEY
带小狗的艺术
Xiaochun Shen
 
PPTX
Perspetivas sobre o stress e desordens emocionais resultantes de contactos in...
Teresa Sofia Castro
 
PPT
Rails beauty
Xiaochun Shen
 
PPTX
Inpact 2012 presentation
Teresa Sofia Castro
 
控制自己的情绪,或者,被 情绪控制
Xiaochun Shen
 
Cocoa on Rails 4th
Xiaochun Shen
 
The Presentation Secrets Of Stevejobs
Hamdan Agung R
 
Cocoa on-rails-5th
Xiaochun Shen
 
带小狗的艺术
Xiaochun Shen
 
Perspetivas sobre o stress e desordens emocionais resultantes de contactos in...
Teresa Sofia Castro
 
Rails beauty
Xiaochun Shen
 
Inpact 2012 presentation
Teresa Sofia Castro
 
Ad

Similar to Cocoa on-rails-3rd (20)

PDF
Introduction à Ruby
Microsoft
 
PDF
Trailblazer Introduction by Nick Sutterer
Pivorak MeetUp
 
PDF
Introduction to Rails - presented by Arman Ortega
arman o
 
PDF
Rails 4.0
Robert Gogolok
 
KEY
Getting started with Rails (2), Season 2
RORLAB
 
PPTX
Ruby on rails3 - introduction to rails
Emad Elsaid
 
PPT
Rail3 intro 29th_sep_surendran
SPRITLE SOFTWARE PRIVATE LIMIT ED
 
PDF
Curso rails
Icalia Labs
 
PPT
Ruby on Rails introduction
Tran Hung
 
PDF
Pourquoi ruby et rails déchirent
Nicolas Ledez
 
PDF
Ruby on Rails - Introduction
Vagmi Mudumbai
 
PDF
Ruby conf 2011, Create your own rails framework
Pankaj Bhageria
 
PPTX
Learning to code for startup mvp session 3
Henry S
 
KEY
What's new and great in Rails 3 - Matt Gauger - Milwaukee Ruby Users Group De...
Matt Gauger
 
PPTX
Intro to Rails 4
Kartik Sahoo
 
PDF
Migrating Legacy Rails Apps to Rails 3
Clinton Dreisbach
 
PDF
Building web framework with Rack
sickill
 
PDF
Basic Rails Training
Arthit Hongchintakul
 
PDF
Ruby on Rails at PROMPT ISEL '11
Pedro Cunha
 
KEY
Supa fast Ruby + Rails
Jean-Baptiste Feldis
 
Introduction à Ruby
Microsoft
 
Trailblazer Introduction by Nick Sutterer
Pivorak MeetUp
 
Introduction to Rails - presented by Arman Ortega
arman o
 
Rails 4.0
Robert Gogolok
 
Getting started with Rails (2), Season 2
RORLAB
 
Ruby on rails3 - introduction to rails
Emad Elsaid
 
Rail3 intro 29th_sep_surendran
SPRITLE SOFTWARE PRIVATE LIMIT ED
 
Curso rails
Icalia Labs
 
Ruby on Rails introduction
Tran Hung
 
Pourquoi ruby et rails déchirent
Nicolas Ledez
 
Ruby on Rails - Introduction
Vagmi Mudumbai
 
Ruby conf 2011, Create your own rails framework
Pankaj Bhageria
 
Learning to code for startup mvp session 3
Henry S
 
What's new and great in Rails 3 - Matt Gauger - Milwaukee Ruby Users Group De...
Matt Gauger
 
Intro to Rails 4
Kartik Sahoo
 
Migrating Legacy Rails Apps to Rails 3
Clinton Dreisbach
 
Building web framework with Rack
sickill
 
Basic Rails Training
Arthit Hongchintakul
 
Ruby on Rails at PROMPT ISEL '11
Pedro Cunha
 
Supa fast Ruby + Rails
Jean-Baptiste Feldis
 
Ad

More from Xiaochun Shen (7)

PPT
Learn anything ... fast
Xiaochun Shen
 
PPT
Cocoa on Rails 6th
Xiaochun Shen
 
KEY
Anyone can play iPhone-Tuzhiwu
Xiaochun Shen
 
PPTX
S3 prepare
Xiaochun Shen
 
PPTX
Anyone can-play-i phone
Xiaochun Shen
 
ODP
Cocoa on Rails
Xiaochun Shen
 
PPT
孩子你慢慢来
Xiaochun Shen
 
Learn anything ... fast
Xiaochun Shen
 
Cocoa on Rails 6th
Xiaochun Shen
 
Anyone can play iPhone-Tuzhiwu
Xiaochun Shen
 
S3 prepare
Xiaochun Shen
 
Anyone can-play-i phone
Xiaochun Shen
 
Cocoa on Rails
Xiaochun Shen
 
孩子你慢慢来
Xiaochun Shen
 

Recently uploaded (20)

PPTX
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
PPTX
Controller Request and Response in Odoo18
Celine George
 
PDF
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PPTX
SD_GMRC5_Session 6AB_Dulog Pedagohikal at Pagtataya (1).pptx
NickeyArguelles
 
PDF
Council of Chalcedon Re-Examined
Smiling Lungs
 
PPTX
Difference between write and update in odoo 18
Celine George
 
PPTX
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
PDF
Horarios de distribución de agua en julio
pegazohn1978
 
PPTX
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PDF
STATEMENT-BY-THE-HON.-MINISTER-FOR-HEALTH-ON-THE-COVID-19-OUTBREAK-AT-UG_revi...
nservice241
 
PPTX
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
PDF
Mahidol_Change_Agent_Note_2025-06-27-29_MUSEF
Tassanee Lerksuthirat
 
PDF
Week 2 - Irish Natural Heritage Powerpoint.pdf
swainealan
 
PDF
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
PPTX
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PPTX
EDUCATIONAL MEDIA/ TEACHING AUDIO VISUAL AIDS
Sonali Gupta
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PDF
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
Controller Request and Response in Odoo18
Celine George
 
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
SD_GMRC5_Session 6AB_Dulog Pedagohikal at Pagtataya (1).pptx
NickeyArguelles
 
Council of Chalcedon Re-Examined
Smiling Lungs
 
Difference between write and update in odoo 18
Celine George
 
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
Horarios de distribución de agua en julio
pegazohn1978
 
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
STATEMENT-BY-THE-HON.-MINISTER-FOR-HEALTH-ON-THE-COVID-19-OUTBREAK-AT-UG_revi...
nservice241
 
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
Mahidol_Change_Agent_Note_2025-06-27-29_MUSEF
Tassanee Lerksuthirat
 
Week 2 - Irish Natural Heritage Powerpoint.pdf
swainealan
 
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
EDUCATIONAL MEDIA/ TEACHING AUDIO VISUAL AIDS
Sonali Gupta
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 

Cocoa on-rails-3rd

Editor's Notes