Method: RightAws::S3::Key#full_name

Defined in:
lib/s3/right_s3.rb

#full_name(separator = '/') ⇒ Object

Return the full S3 path to this key (bucket/key).

key.full_name #=> 'my_awesome_bucket/cool_key'


443
444
445
# File 'lib/s3/right_s3.rb', line 443

def full_name(separator='/')
  "#{@bucket.to_s}#{separator}#{@name}"
end