Sha256: 7116419e0be8aa2c33ae944405468ee6929254e49f41324a298d36d28d39f901

Contents?: true

Size: 1.67 KB

Versions: 2

Compression:

Stored size: 1.67 KB

Contents

# Aspose.Words Cloud SDK For Ruby
This SDK lets you use [Aspose Cloud Word APIs](http://www.aspose.com/cloud/word-api.aspx) in your web apps.

## Installing
You can simply install AsposeWordsCloud with gem:

`gem install aspose_words_cloud`

## 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/asposewords/Aspose_Words_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
Your feedback is very important to us. Please email us all your queries and feedback at marketplace@aspose.com.

## License
Aspose Words SDK is available under the MIT license. See the [LICENSE](https://github.com/asposewords/Aspose_Words_Cloud/blob/master/SDKs/Aspose.Words_Cloud_SDK_For_Ruby/LICENSE) file for more info.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aspose_words_cloud-1.0.1 README.md
aspose_words_cloud-1.0.0 README.md