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.

Key Features

Convert

Merge

Protect

SaveAs

Export

Clear

Background

Quick Start Guide

To begin with Aspose.Cells Cloud, here's what you need to do:
  • 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'
        
    
  • or install directly
  •     
             gem install aspose_cells_cloud
        
    
  • Use the conversion code provided below as a reference to add or modify your application.
  •     
            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