1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

add missing new method call to example

This commit is contained in:
Ryan King 2015-06-23 11:57:27 -07:00
parent c4330486f5
commit 0c59708865

View file

@ -28,7 +28,7 @@ Next, create a connection to queue service:
Using a US-based account:
service = Fog::Rackspace::Queues(
service = Fog::Rackspace::Queues.new(
:rackspace_username => RACKSPACE_USER_NAME, # Your Rackspace Username
:rackspace_api_key => RACKSPACE_API, # Your Rackspace API key
:rackspace_region => :ord, # Your desired region
@ -38,7 +38,7 @@ Using a US-based account:
Using a UK-based account:
service = Fog::Rackspace::Queues(
service = Fog::Rackspace::Queues.new(
:rackspace_username => RACKSPACE_USER_NAME, # Your Rackspace Username
:rackspace_api_key => RACKSPACE_API, # Your Rackspace API key
:rackspace_auth_url => Fog::Rackspace::UK_AUTH_ENDPOINT,