lib/cdnconnect_api.rb in cdnconnect-api-0.4.0 vs lib/cdnconnect_api.rb in cdnconnect-api-0.4.1

- old
+ new

@@ -23,11 +23,11 @@ ## # Used to easily interact with CDN Connect API. class APIClient @@application_name = 'cdnconnect-api-ruby' - @@application_version = '0.4.0' + @@application_version = '0.4.1' @@user_agent = @@application_name + ' v' + @@application_version @@api_host = 'https://api.cdnconnect.com' @@api_version = 'v1' ## @@ -150,18 +150,18 @@ # when the `source_folder_path` option is used. Default is true. # - <code>:destination_file_name</code> - # The name which the uploaded file should be renamed to. By default the file name # will be the same as the file being uploaded. The `destination_file_name` option is # only used for a single file upload, it does not work for multiple file requests. - # - <code>queue_processing/code> - + # - <code>queue_processing</code> - # A true or false value indicating if the processing of the data should be queued or - # processed immediately. A response with "queued_processing" + # processed immediately. A response with "queue_processing" # will be faster because the resposne doesn't wait on the system to complete # processing the data. However, because an queued processing response does not wait # for the data to complete processing then the response will not contain any information # about the data which was just uploaded. Use queued processing only if you do not # need to know the details of the upload. Additionally you can use the `webhook_url` - # to post back the uploads details once it's processed. Default is false. + # to post back the uploads details once it's processed. Default is true. # - <code>:webhook_url</code> - # A URL which the system should `POST` the response to. This works for both immediate # processing or queued processing calls. The data sent to the `webhook_url` will be # the same as the data that is responded in a synchronous response, and is sent # within the `data` parameter. The format sent can be in either `json` or `xml` by