Rails

Agile Web Development With Rails: A Pragmatic Guide (The Facets Of Ruby Series)
Agile Web Development With Rails: A Pragmatic Guide (The Facets Of Ruby Series)

まずは、HelloWorldから

  • rails demo
  • cd demo
  • script/generate controller Hello
  • emacs app/controllers/hello_controller.rb
class HelloController < ApplicationController
  def say
  end
end
  • emacs app/views/hello/say.rhtml

Hello <a class="keyword" href="http://d.hatena.ne.jp/keyword/Rails">Rails</a>

Hello My demo