Sha256: 0ee285e8d19c3aa7ccda0ab0e418fa153182ed9a8c9ef5b10da4c60bf77ee03d

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

# Aspose.Cells Cloud SDK For Ruby
This SDK lets you use [Aspose Cloud Cells APIs](http://api.aspose.cloud/swagger/ui/index) in your web apps.


<p align="center">
  <a title="Download complete Aspose.Cells for Cloud source code" href="https://github.com/asposecells/Aspose_Cells_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](http://www.aspose.com/docs/display/cellscloud/Available+SDKs).


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

```ruby
require 'aspose_cells_cloud'

class CellsUsage
  
  include AsposeCellsCloud
  include AsposeStorageCloud
	
  def initialize
    #Get App key and App SID from https://cloud.aspose.com
    AsposeApp.app_key_and_sid("APP_KEY", "APP_SID")
    @cells_api = CellsApi.new  
  end
  
  def convert_work_book_to_pdf
    #Convert workbook from request content to PDF format.
    file_name = "myWorkbook.xlsx"
    convert_to_format = "pdf"
    response = @cells_api.put_convert_work_book(File.open("data/" << file_name,"r") { |io| io.read }, {format: convert_to_format})
  end
  
end
```
## Unit Tests
Aspose Cells SDK includes a suite of unit tests within the [test](https://github.com/aspose-cells/Aspose.Cells-for-Cloud/tree/master/SDKs) 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

7 entries across 7 versions & 1 rubygems

Version Path
aspose_cells_cloud-1.0.10 README.md
aspose_cells_cloud-1.0.9 README.md
aspose_cells_cloud-1.0.8 README.md
aspose_cells_cloud-1.0.7 README.md
aspose_cells_cloud-1.0.6 README.md
aspose_cells_cloud-1.0.5 README.md
aspose_cells_cloud-1.0.3 README.md