Sha256: 1880aec08082cb88bd364cb06424492d8ab550f91b164f4c3f73f1fdc8aa340f

Contents?: true

Size: 319 Bytes

Versions: 8

Compression:

Stored size: 319 Bytes

Contents

module SimpleWorker

    class ApiAuth

        attr_accessor :host

        def initialize(access_key, secret_key, options={})
            @access_key = access_key
            @secret_key = secret_key
            @host = options[:host] || "http://simpleworker.appoxy.com/api/"

        end
    end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
simple_worker-0.1.0 lib/api_auth.rb
simple_worker-0.0.13 lib/api_auth.rb
simple_worker-0.0.12 lib/api_auth.rb
simple_worker-0.0.10 lib/api_auth.rb
simple_worker-0.0.9 lib/api_auth.rb
simple_worker-0.0.8 lib/api_auth.rb
simple_worker-0.0.7 lib/api_auth.rb
simple_worker-0.0.6 lib/api_auth.rb