Class: DataServices
Instance Attribute Summary collapse
-
#guide ⇒ Object
readonly
Returns the value of attribute guide.
-
#lineup ⇒ Object
readonly
Returns the value of attribute lineup.
Instance Method Summary collapse
-
#initialize(logger) ⇒ DataServices
constructor
A new instance of DataServices.
Constructor Details
#initialize(logger) ⇒ DataServices
Returns a new instance of DataServices.
8 9 10 11 12 13 |
# File 'lib/data_services/data_services.rb', line 8 def initialize(logger) @logger = logger @guide = Guide.new logger @lineup = Lineup.new logger end |
Instance Attribute Details
#guide ⇒ Object (readonly)
Returns the value of attribute guide.
7 8 9 |
# File 'lib/data_services/data_services.rb', line 7 def guide @guide end |
#lineup ⇒ Object (readonly)
Returns the value of attribute lineup.
7 8 9 |
# File 'lib/data_services/data_services.rb', line 7 def lineup @lineup end |