Class: FakeS3::S3MatchSet

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeS3MatchSet

Returns a new instance of S3MatchSet.



5
6
7
8
# File 'lib/fakes3/sorted_object_list.rb', line 5

def initialize
  @matches = []
  @is_truncated = false
end

Instance Attribute Details

#is_truncatedObject

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

#matchesObject

Returns the value of attribute matches.



4
5
6
# File 'lib/fakes3/sorted_object_list.rb', line 4

def matches
  @matches
end