[ruby]sinatra 学习 1 (get start)

sinatra 是ruby的一个web框架

http://www.sinatrarb.com/

安装(可以使用taobao的镜像)

gem install sinatra

hello world

# hello.rb
  require 'sinatra'
  
  get '/' do
    'Hello world!'
  end

 启动

ruby -rubygems first.rb

 查看

localhost:4567



posted on 2011-12-27 01:21  bluefrog  阅读(426)  评论(0编辑  收藏  举报