Class: ReleaseFeature::Repository::YamlRepository::AccessibleRange
- Inherits:
-
Object
- Object
- ReleaseFeature::Repository::YamlRepository::AccessibleRange
- Defined in:
- lib/release_feature/repository/yaml_repository.rb
Instance Attribute Summary collapse
-
#close_at ⇒ Object
readonly
Returns the value of attribute close_at.
-
#open_at ⇒ Object
readonly
Returns the value of attribute open_at.
Instance Method Summary collapse
-
#initialize(open_at:, close_at:) ⇒ AccessibleRange
constructor
A new instance of AccessibleRange.
Constructor Details
#initialize(open_at:, close_at:) ⇒ AccessibleRange
Returns a new instance of AccessibleRange.
10 11 12 13 |
# File 'lib/release_feature/repository/yaml_repository.rb', line 10 def initialize(open_at:, close_at:) @open_at = open_at @close_at = close_at end |
Instance Attribute Details
#close_at ⇒ Object (readonly)
Returns the value of attribute close_at.
8 9 10 |
# File 'lib/release_feature/repository/yaml_repository.rb', line 8 def close_at @close_at end |
#open_at ⇒ Object (readonly)
Returns the value of attribute open_at.
8 9 10 |
# File 'lib/release_feature/repository/yaml_repository.rb', line 8 def open_at @open_at end |