method
default_options
default_options(options = nil)
public
Hide source
# File railties/lib/rails_generator/options.rb, line 31 def default_options(options = nil) if options write_inheritable_attribute(:default_options, options) else read_inheritable_attribute(:default_options) or write_inheritable_attribute(:default_options, {}) end end