素晴らしい。。
多少変換速度は気になるものの、対応言語や手間を考えるとかなり良いです。
導入もとても簡単でした。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<textarea class="ruby" cols="60" rows="5" name="code"> class Articles before_filter :auth def index articles = Article.find(:all) return articles end def show article = Article.find(:first) return article end end </textarea> |