Class: Application::Configuration::Location
- Defined in:
- lib/application_configuration.rb
Constant Summary collapse
- FILE =
:file
- URL =
:url
- HASH =
:hash
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#options ⇒ Object
Returns the value of attribute options.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
Instance Method Summary collapse
- #==(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(loc, type = Application::Configuration::Location::FILE) ⇒ Location
constructor
A new instance of Location.
Constructor Details
#initialize(loc, type = Application::Configuration::Location::FILE) ⇒ Location
Returns a new instance of Location.
204 205 206 207 |
# File 'lib/application_configuration.rb', line 204 def initialize(loc, type = Application::Configuration::Location::FILE) self.type = type self.name = loc end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
201 202 203 |
# File 'lib/application_configuration.rb', line 201 def name @name end |
#options ⇒ Object
Returns the value of attribute options.
202 203 204 |
# File 'lib/application_configuration.rb', line 202 def @options end |
#type ⇒ Object
Returns the value of attribute type.
200 201 202 |
# File 'lib/application_configuration.rb', line 200 def type @type end |
Class Method Details
.supported_types ⇒ Object
209 210 211 |
# File 'lib/application_configuration.rb', line 209 def self.supported_types [Application::Configuration::Location::FILE, Application::Configuration::Location::URL, Application::Configuration::Location::HASH] end |
Instance Method Details
#==(other) ⇒ Object
217 218 219 |
# File 'lib/application_configuration.rb', line 217 def ==(other) self.name.to_s == other.name.to_s end |
#eql?(other) ⇒ Boolean
221 222 223 |
# File 'lib/application_configuration.rb', line 221 def eql?(other) self.name.to_s == other.name.to_s end |
#hash ⇒ Object
225 226 227 |
# File 'lib/application_configuration.rb', line 225 def hash self.name.to_s.hash end |