0.3.1 • Published 9 years ago

racket v0.3.1

Weekly downloads
19
License
-
Repository
github
Last release
9 years ago

Racket (for Rackspace's Cloud APIs)

A client library for all of Rackspace's Cloud APIs.

Synopsis

var racket = require('racket')

var queues = new racket.CloudQueues({
  username   : 'my-username',
  apiKey     : 'deadbeefcafebabe8badf00d1badb00t',
  authRegion : 'US',
  region     : 'ORD',
  urlType    : 'public',
})

queues.listQueues(function(err, data) {
  console.log(data)
})

CloudQueues

See the CloudQueues docs for more details.

ChangeLog

0.3.0 (2015-03-02)

  • NEW Refactored so authentication automatically happens (not explicit anymore)
  • FIX Fixed no-op function when no callback is provided (all operations)
  • FIX Add extra params to CloudQueues listQueues()

0.2.0 (2015-02-28)

  • NEW All Message and Claimed operations implemented

0.1.0 (2015-02-27)

  • NEW Initial version with all CloudQueues API operations implemented
  • NEW All Queue operations now implemented (no message operations yet)

Author

Written by Andrew Chilton - Twitter.

Written for Tynio so we can talk to all RackspaceCloud services. Please check us out for hosting your blog/microblog/shortlink service with stats built-in. "Create, Shorten and Share Almost Anything!"

License

The MIT License (MIT)

Copyright 2015 Tynio Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

(Ends)