标签: html ruby-on-rails ruby-on-rails-3 generator scaffold
默认的scaffold命令创建如下代码:
respond_to do |format| format.html # show.html.erb format.xml { render :xml => @model_name} end
我的应用程序不使用XML,那么如何配置scaffold(和其他生成器)以仅创建HTML代码,并消除讨厌的respond_to do |format|块?
respond_to do |format|
在Ubuntu上使用Rails 3。
答案 0 :(得分:2)
使用Ryan Bates的nifty_scaffold:https://github.com/ryanb/nifty-generators