2013-02-01から1ヶ月間の記事一覧

Sinatra で twitter bootstrap v2.3.0

Sinatra で bootstrap 使おうとしてはまったのでめも。 たぶん今しか使えない情報。 へたれなので現時点の最新のdocumentが使える 2.3 をゲット https://github.com/twitter/bootstrapをcloneして、 git checkout -b v2.3.0 で 2.3にそれぞれの js, less, im…

Rubyのクラスメソッドでのmethod_missing

まずmethod_missingを特異クラスに仕込む class Sample class << self def method_missing(method, *args) p "miss: #{method}" end end end Sample.hoge => # => miss: hoge Sample.hoge => # => miss: hoge そこでdefine_methodでメソッド足してみる 当然…