タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

Sinatraに関するHiDEのブックマーク (2)

  • Getting started with Sinatra | Millwood Online

    When I first started work on this site with Sinatra I looked for somewhere to host it. I find thinking about the deployment process as a good way of planning and learning. For this I turned to Heroku. They offer a free tier which seemed enough for my needs and also the documentation was fantastic. Take a look at the Heroku Getting Started page to sign up, install the Heroku toolbelt and login to y

    HiDE
    HiDE 2012/11/28
  • Sinatra超完全解説 (1) Classic Style と Modular Application - やゆぐ

    Sinatraはとてもシンプルなフレームワークです. 例えばHello Worldならば次のコードだけでできあがりです. require 'sinatra' get '/' do "Hello, world!" end 魔法のようにかんたんですね! しかし「どうしてこれで動くのか」を知っている人は比較的少ないのではないでしょうか. 気になるSinatraのソースコードを読んでみましょう. Classic Style と Modular Application ところでSinatraにはクラスを使ったModular Applicationという書き方があるのを知っていますか? Hello WorldはModular Applicationではこのようになります require 'sinatra/base' class MyApp < Sinatra::Base get '/' do 'Hel

  • 1