Class: FakeS3::S3MatchSet
- Inherits:
-
Object
- Object
- FakeS3::S3MatchSet
- Defined in:
- lib/fakes3/sorted_object_list.rb
Instance Attribute Summary collapse
-
#common_prefixes ⇒ Object
Returns the value of attribute common_prefixes.
-
#is_truncated ⇒ Object
Returns the value of attribute is_truncated.
-
#matches ⇒ Object
Returns the value of attribute matches.
Instance Method Summary collapse
-
#initialize ⇒ S3MatchSet
constructor
A new instance of S3MatchSet.
Constructor Details
#initialize ⇒ S3MatchSet
Returns a new instance of S3MatchSet.
5 6 7 8 9 |
# File 'lib/fakes3/sorted_object_list.rb', line 5 def initialize @matches = [] @is_truncated = false @common_prefixes = [] end |
Instance Attribute Details
#common_prefixes ⇒ Object
Returns the value of attribute common_prefixes.
4 5 6 |
# File 'lib/fakes3/sorted_object_list.rb', line 4 def common_prefixes @common_prefixes end |
#is_truncated ⇒ Object
Returns the value of attribute is_truncated.
4 5 6 |
# File 'lib/fakes3/sorted_object_list.rb', line 4 def is_truncated @is_truncated end |
#matches ⇒ Object
Returns the value of attribute matches.
4 5 6 |
# File 'lib/fakes3/sorted_object_list.rb', line 4 def matches @matches end |