Sha256: 779034844b27bf7119ffe987951bbdf496e707a5ecde8ac6958778f37903d0d6

Contents?: true

Size: 927 Bytes

Versions: 1

Compression:

Stored size: 927 Bytes

Contents

require 'fog'

module Stackster
  class AWS
    class SimpleDB

      def initialize(args)
        c = args[:config]
        @connect = Fog::AWS::SimpleDB.new :aws_access_key_id => c.access_key,
                                          :aws_secret_access_key => c.secret_key,
                                          :region => c.region
      end

      def domains
        @connect.list_domains.body['Domains']
      end

      def domain_exists?(domain)
        domains.include? domain
      end

      def create_domain(domain)
        @connect.create_domain(domain) unless domains.exists?
      end

      def put_attributes(domain, key, attributes, options)
        @connect.put_attributes domain, key, attributes, options
      end

      def select(query)
        @connect.select(query).body['Items']
      end

      def delete(domain, key)
        @connect.delete_attributes domain, key
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stackster-0.2.5 lib/stackster/aws/simpledb.rb