Class: Rails::Configuration::Generators
- Inherits:
-
Object
- Object
- Rails::Configuration::Generators
- Defined in:
- lib/rails/configuration.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#aliases ⇒ Object
Returns the value of attribute aliases.
-
#api_only ⇒ Object
Returns the value of attribute api_only.
-
#colorize_logging ⇒ Object
Returns the value of attribute colorize_logging.
-
#fallbacks ⇒ Object
Returns the value of attribute fallbacks.
-
#hidden_namespaces ⇒ Object
readonly
Returns the value of attribute hidden_namespaces.
-
#options ⇒ Object
Returns the value of attribute options.
-
#templates ⇒ Object
Returns the value of attribute templates.
Instance Method Summary collapse
- #hide_namespace(namespace) ⇒ Object
-
#initialize ⇒ Generators
constructor
A new instance of Generators.
- #initialize_copy(source) ⇒ Object
- #method_missing(method, *args) ⇒ Object
Constructor Details
#initialize ⇒ Generators
Returns a new instance of Generators.
94 95 96 97 98 99 100 101 102 |
# File 'lib/rails/configuration.rb', line 94 def initialize @aliases = Hash.new { |h, k| h[k] = {} } @options = Hash.new { |h, k| h[k] = {} } @fallbacks = {} @templates = [] @colorize_logging = true @api_only = false @hidden_namespaces = [] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/rails/configuration.rb', line 115 def method_missing(method, *args) method = method.to_s.sub(/=$/, "").to_sym return @options[method] if args.empty? if method == :rails || args.first.is_a?(Hash) namespace, configuration = method, args.shift else namespace, configuration = args.shift, args.shift namespace = namespace.to_sym if namespace.respond_to?(:to_sym) @options[:rails][method] = namespace end if configuration aliases = configuration.delete(:aliases) @aliases[namespace].merge!(aliases) if aliases @options[namespace].merge!(configuration) end end |
Instance Attribute Details
#aliases ⇒ Object
Returns the value of attribute aliases.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def aliases @aliases end |
#api_only ⇒ Object
Returns the value of attribute api_only.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def api_only @api_only end |
#colorize_logging ⇒ Object
Returns the value of attribute colorize_logging.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def colorize_logging @colorize_logging end |
#fallbacks ⇒ Object
Returns the value of attribute fallbacks.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def fallbacks @fallbacks end |
#hidden_namespaces ⇒ Object (readonly)
Returns the value of attribute hidden_namespaces.
92 93 94 |
# File 'lib/rails/configuration.rb', line 92 def hidden_namespaces @hidden_namespaces end |
#options ⇒ Object
Returns the value of attribute options.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def @options end |
#templates ⇒ Object
Returns the value of attribute templates.
91 92 93 |
# File 'lib/rails/configuration.rb', line 91 def templates @templates end |
Instance Method Details
#hide_namespace(namespace) ⇒ Object
111 112 113 |
# File 'lib/rails/configuration.rb', line 111 def hide_namespace(namespace) @hidden_namespaces << namespace end |
#initialize_copy(source) ⇒ Object
104 105 106 107 108 109 |
# File 'lib/rails/configuration.rb', line 104 def initialize_copy(source) @aliases = @aliases.deep_dup @options = @options.deep_dup @fallbacks = @fallbacks.deep_dup @templates = @templates.dup end |