Sha256: 2ee28bbb9301121ea3d16f413a864b58d68edd41c440182d9e1d91c88f3788c5
Contents?: true
Size: 1.47 KB
Versions: 2
Compression:
Stored size: 1.47 KB
Contents
# Aspose.Cells Cloud SDK For Ruby This SDK lets you use [Aspose Cloud Cells APIs](http://api.aspose.com/v1.1/swagger/ui/index) in your web apps. ## Installing You can simply install AsposeCellsCloud with gem: `gem install aspose_cells_cloud` ## 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/asposecells/Aspose_Cells_Cloud/blob/master/SDKs/Aspose.Cells_Cloud_SDK_For_Ruby/test/cells_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 Cells SDK is available under the MIT license. See the [LICENSE](https://github.com/asposecells/Aspose_Cells_Cloud/blob/master/SDKs/Aspose.Cells_Cloud_SDK_For_Ruby/LICENSE) file for more info.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aspose_cells_cloud-1.0.2 | README.md |
aspose_cells_cloud-1.0.1 | README.md |