We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a052c6 commit cd679c6Copy full SHA for cd679c6
lib/aws/s3/acl.rb
@@ -385,7 +385,7 @@ def build
385
class Grantee
386
include SelectiveAttributeProxy #:nodoc:
387
388
- undef_method :id # Get rid of Object#id
+ undef_method :id if method_defined?(:id) # Get rid of Object#id
389
390
def initialize(attributes = {})
391
# Set default values for attributes that may not be passed in but we still want the object
lib/aws/s3/owner.rb
@@ -7,7 +7,7 @@ module S3
7
#
8
# You can retrieve the owner of the current account by calling Owner.current.
9
class Owner
10
11
include SelectiveAttributeProxy
12
13
class << self
0 commit comments