README.md in fuelsdk-0.0.2 vs README.md in fuelsdk-0.0.3
- old
+ new
@@ -7,21 +7,16 @@
The Fuel SDK for Ruby provides easy access to ExactTarget's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to ExactTarget functionality via common collection types such as array/hash.
## Requirements ##
Ruby Version 1.9.3
-Gems:
-
-- [savon (2.x)](http://rubygems.org/gems/savon)
-- [json (1.7.x)](http://rubygems.org/gems/json)
-- [jwt (0.1.6)](https://rubygems.org/gems/jwt)
-
-
## Getting Started ##
-After downloading the project, rename the config.yaml.template file to config.yaml.
+Add this line to your application's Gemfile:
-Edit config.yaml so you can input the ClientID and Client Secret values provided when you registered your application. If you are building a HubExchange application for the Interactive Marketing Hub then, you must also provide the Application Signature (appsignature). Only change the value for the defaultwsdl configuration item if instructed by ExactTarget.
+```ruby
+gem 'fuelsdk'
+```
If you have not registered your application or you need to lookup your Application Key or Application Signature values, please go to App Center at [Code@: ExactTarget's Developer Community](http://code.exacttarget.com/appcenter "Code@ App Center").
## Example Request ##
All ExactTarget objects exposed through the Fuel SDK begin with be prefixed with "ET\_". Start by working with the ET_List object:
@@ -66,11 +61,11 @@
:description=>"Contains all subscribers",
:list_classification=>"ExactTargetList",
:"@xsi:type"=>"List"}
],
@code=200,
- @status=true,
- @moreResults=false,
+ @success?=true,
+ @more?=false,
@request_id="41f0f293-954f-4ac7-8e7a-0a5756022218"
>
</pre>
## ET\_Client Class ##