class Arroyo::Buckets

Attributes

client[R]

Public Class Methods

new(client) click to toggle source
# File lib/arroyo/buckets.rb, line 7
def initialize(client)
  @client = client
end

Public Instance Methods

open(name) click to toggle source
# File lib/arroyo/buckets.rb, line 11
def open(name)
  Bucket.new client, name: name
end