23.11 Adding New Templating Systems 23.9 Layouts and Components
ruby script/generate model article body:text
exists app/models/
exists test/unit/
exists test/fixtures/
create app/models/article.rb
create test/unit/article_test.rb
create test/fixtures/articles.yml
exists db/migrate
create db/migrate/20100523223057_create_articles.rb
cp -v /home/rubys/git/awdwr/data/code/e1/views/app/models/article.rb app/models
`/home/rubys/git/awdwr/data/code/e1/views/app/models/article.rb' -> `app/models/article.rb'
cp -vr /home/rubys/git/awdwr/data/code/e1/views/app/views/blog app/views
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog' -> `app/views/blog'
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog/list.html.erb' -> `app/views/blog/list.html.erb'
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog/index.html.erb' -> `app/views/blog/index.html.erb'
get /blog/list
It is now Sun May 23 18:30:59 -0400 2010
Today I had pizza
Yesterday I watched Spongebob
Did nothing on Saturday
cp -vr /home/rubys/git/awdwr/data/code/e1/views/app/views/blog1 app/views
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog1' -> `app/views/blog1'
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog1/list.html.erb' -> `app/views/blog1/list.html.erb'
get /blog1/list
It is now Sun May 23 18:31:00 -0400 2010
Today I had pizza
Yesterday I watched Spongebob
Did nothing on Saturday
cp -vr /home/rubys/git/awdwr/data/code/e1/views/app/views/blog2 app/views
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog2' -> `app/views/blog2'
`/home/rubys/git/awdwr/data/code/e1/views/app/views/blog2/list.html.erb' -> `app/views/blog2/list.html.erb'
get /blog2/list
It is now Sun May 23 18:31:02 -0400 2010
Today I had pizza
Yesterday I watched Spongebob
Did nothing on Saturday
There are a total of 4 articles.
23.11 Adding New Templating Systems 23.9 Layouts and Components