lib/heirloom/aws/simpledb.rb in heirloom-0.1.0 vs lib/heirloom/aws/simpledb.rb in heirloom-0.1.1
- old
+ new
@@ -17,11 +17,11 @@
def create_domain(domain)
@sdb.create_domain(domain) unless domains.include? domain
end
- def put_attributes(domain, key, args)
- @sdb.put_attributes domain, key, args
+ def put_attributes(domain, key, attributes, options = {})
+ @sdb.put_attributes domain, key, attributes, options
end
def select(query)
@sdb.select(query).body['Items']
end