Module: Rails::Generator::Options::ClassMethods
- Defined in:
- lib/rails_generator/options.rb
Instance Method Summary collapse
- #default_options(options = nil) ⇒ Object
-
#full_options(runtime_options = {}) ⇒ Object
Merge together our class options.
- #inherited_with_options(sub) ⇒ Object
- #mandatory_options(options = nil) ⇒ Object
Instance Method Details
#default_options(options = nil) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/rails_generator/options.rb', line 30 def ( = nil) if write_inheritable_attribute(:default_options, ) else read_inheritable_attribute(:default_options) or write_inheritable_attribute(:default_options, {}) end end |
#full_options(runtime_options = {}) ⇒ Object
Merge together our class options. In increasing precedence:
default_options (class default options)
runtime_options (provided as argument)
mandatory_options (class mandatory options)
42 43 44 |
# File 'lib/rails_generator/options.rb', line 42 def ( = {}) .merge().merge() end |
#inherited_with_options(sub) ⇒ Object
17 18 19 20 |
# File 'lib/rails_generator/options.rb', line 17 def (sub) (sub) if respond_to?(:inherited_without_options) sub.extend(Rails::Generator::Options::ClassMethods) end |
#mandatory_options(options = nil) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/rails_generator/options.rb', line 22 def ( = nil) if write_inheritable_attribute(:mandatory_options, ) else read_inheritable_attribute(:mandatory_options) or write_inheritable_attribute(:mandatory_options, {}) end end |