GitHub

Sinatra

http://www.sinatrarb.com/

まずはここから

http://www.sinatrarb.com/intro.html

  • Hello World
  • ルーティング (get, post, put, delete)
  • 静的ファイル (./public)
  • ビューとテンプレート (./views/index.erb, template :layout, template :foo)
  • ヘルパー (helper)
  • フィルタ (before)
  • 停止 (halt)
  • 別のルーティングの使用 (pass)
  • 設定 (configure)
  • エラー処理 (not_found, error)
  • MIMEタイプ (mime)
  • Rackミドルウェア (use)
  • テスト (Sinatra::Test)
  • コマンドライン (-h)
  • 開発版の使用

もっと詳しく (The Sinatra Book)

http://www.sinatrarb.com/book.html

FAQ(Tips)

リンク

source: Sinatra.hd
View on github | Report issue