■ Ramaze インストールRuby1.9.2 環境
> gem i ramaze
===============================================
Thank you for installing Ramaze!
To create a new project:
$ ramaze create yourproject
===============================================
Successfully installed ramaze-2010.06.18
1 gem installed
Installing ri documentation for ramaze-2010.06.18...
Installing RDoc documentation for ramaze-2010.06.18...
innateが一緒にインストールされなかったら innateも
> gem i innate
472010年11月7日日曜日
48.
require 'ramaze'
class MainController< Ramaze::Controller
def index
"Hello, Ramaze!"
end
end
Ramaze.start
はじめの一歩 Hello Ramaze!
このソースhello.rbをRubyで実行し http://localhost:7000/ でアクセス
482010年11月7日日曜日
require 'ramaze'
class MainController< Ramaze::Controller
map ‘/another‘
def hello
"Hello from Another"
end
end
Ramaze.start
ルーティング another Hello !
このhello2.rbをRubyで実行し http://localhost:7000/another/hello でアクセス
502010年11月7日日曜日