Class: Application::Configuration::Location

Inherits:
Object
  • Object
show all
Defined in:
lib/application_configuration.rb

Constant Summary collapse

FILE =
:file
URL =
:url
HASH =
:hash

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

#nameObject

Returns the value of attribute name.



201
202
203
# File 'lib/application_configuration.rb', line 201

def name
  @name
end

#optionsObject

Returns the value of attribute options.



202
203
204
# File 'lib/application_configuration.rb', line 202

def options
  @options
end

#typeObject

Returns the value of attribute type.



200
201
202
# File 'lib/application_configuration.rb', line 200

def type
  @type
end

Class Method Details

.supported_typesObject



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

Returns:

  • (Boolean)


221
222
223
# File 'lib/application_configuration.rb', line 221

def eql?(other)
  self.name.to_s == other.name.to_s
end

#hashObject



225
226
227
# File 'lib/application_configuration.rb', line 225

def hash
  self.name.to_s.hash
end