Merge together our instance options. In increasing precedence:
default_options (class default options) options (instance options) runtime_options (provided as argument) mandatory_options (class mandatory options)
Source Code
# File rails_generator/options.rb, line 70 def full_options(runtime_options = {}) self.class.full_options(options.merge(runtime_options)) end
<code/>and<pre/>for code samples.