Aspose.Cells Cloud SDK for Ruby
Enables developers to create powerful cloud-based applications for processing Excel (XLS, XLSX), iWork Numbers, OpenOffice, and other spreadsheet formats. Built on the Aspose.Cells Cloud API and licensed under MIT, this SDK provides comprehensive functionality for:
File Operations : Create, read, merge, split, encrypt, and convert spreadsheets.
Format Conversion : Supports XLS, XLSX, XLSB, ODS, CSV, PDF, HTML, and more.
Worksheet Manipulation : Modify cells, rows, columns, charts, pivot tables, and formulas.
Data Extraction & Processing : Auto-filter, conditional formatting, smart markers, and batch operations.
Quick Start Guide
To begin with Aspose.Cells Cloud, here's what you need to do:
or install directly
Use the conversion code provided below as a reference to add or modify your application.
- Sign up for an account at Aspose for Cloud to obtain your application details.
- Install the Aspose.Cells Cloud Ruby Package from RubyGems.
- execute the following command to get the latest Gem package.
gem 'aspose_cells_cloud', '~> 20.10'
gem install aspose_cells_cloud
require 'openssl'
require 'bundler'
require 'aspose_cells_cloud'
@instance = AsposeCellsCloud::CellsApi.new(ENV['CellsCloudClientId'], ENV['CellsCloudClientSecret'])
request = AsposeCellsCloud::PutConvertWorkbookRequest.new(:File=>{"EmployeeSalesSummary.xlsx" => ::File.open(File.expand_path("./EmployeeSalesSummary.xlsx"),"r") },:format=>"csv");
response = @instance.put_convert_workbook(request);
FileUtils.cp(response.path, 'EmployeeSalesSummary.csv')
Available SDKs
The Aspose.Cells Cloud SDK is available in multiple popular programming languages, enabling developers to integrate spreadsheet processing capabilities across various development environments.