Sha256: 8d187947fc9af449f181cb98b79185ff3f9de36cfa767f9d07b78ccbcd1272a4

Contents?: true

Size: 1.96 KB

Versions: 2

Compression:

Stored size: 1.96 KB

Contents

# Aspose.Words Cloud SDK For Ruby
This SDK lets you use [Aspose Cloud Word APIs](https://www.aspose.com/products/words/cloud) in your web apps.

<p align="center">
  <a title="Download complete Aspose.Words for Cloud source code" href="https://github.com/asposewords/Aspose_Words_Cloud/archive/master.zip">
	<img src="https://raw.github.com/AsposeExamples/java-examples-dashboard/master/images/downloadZip-Button-Large.png" />
  </a>
</p>

##How to Use the SDK?
The complete source code is available in this repository folder, you can either directly use it in your project or use RubyGems. For more details, please visit our [documentation website](https://docs.aspose.com/display/wordscloud/Available+SDKs).

## Usage
APIs of this SDK can be called as follows:

```ruby
require 'aspose_words_cloud'

class WordsUsage
  
  include AsposeWordsCloud
  include AsposeStorageCloud
	
  def initialize
    #Get App key and App SID from https://cloud.aspose.com
    AsposeApp.app_key_and_sid("APP_KEY", "APP_SID")
    @words_api = WordsApi.new  
  end
  
  def load_web_document_into_the_file
    #Load new document from web into the file with any supported format of data.
    load_web_document_data = LoadWebDocumentData.new
    load_web_document_data.loading_document_url = "http://google.com"

    save_options = SaveOptionsData.new
    save_options.save_format = "doc"
    save_options.file_name = "google.doc"

    load_web_document_data.save_options = save_options
    response = @words_api.post_load_web_document(load_web_document_data)
  end
  
end
```
## Unit Tests
Aspose Words SDK includes a suite of unit tests within the [test](https://github.com/aspose-words/Aspose.Words-for-Cloud/blob/master/SDKs/Aspose.Words-Cloud-SDK-for-Ruby/test/words_tests.rb) subdirectory. These Unit Tests also serves as examples of how to use the Aspose Cells SDK.

##Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://www.aspose.com/community/forums/).



Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aspose_words_cloud-1.0.3 README.md
aspose_words_cloud-1.0.2 README.md