As mentioned in my previous blog, I just built up a simple online Blackjack game based on Sinatra. Here is the link and you can play with it. Sinatra is a DSL to build up web applications quickly in Ruby with minimal efforts. It’s such a great tool that I want to write a post-it note.
Include the gem require 'sinatra' and then gem install sinatra
Routes
1 2 3 4 5 6 7 | |
Render template
1 2 3 | |
Helpers
1 2 3 | |
Before filter
1 2 3 | |
Halt the request
1
| |
For more information, check out its official intro.