Class: ReleaseFeature::Repository::YamlRepository::AccessibleRange

Inherits:
Object
  • Object
show all
Defined in:
lib/release_feature/repository/yaml_repository.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_atObject (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_atObject (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