Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aspose_cells_cloud

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aspose_cells_cloud

  • 24.12
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Gem Gem GitHub license GitHub commits since latest release (by date)

Aspose.Cells Cloud for Ruby enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.

Ruby package for Aspose.Cells Cloud

Enhance your Ruby applications with the Aspose.Cells Cloud , enabling seamless integration with Excel, ODS, CSV, Json and other spreadsheet document formats. With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine.

Manipulate Excel and other spreadsheet files in the Cloud

  • File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
  • Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
  • Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
  • Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
  • Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
  • Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
  • Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
  • Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
  • Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
  • Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.

Feature & Enhancements in Version 24.12

Full list of issues covering all changes in this release:

  • Add the new remove duplicates api.
  • Add the new extract text API.
  • The pivot filter could not be created successfully.

Support file format

FormatDescriptionLoadSave
XLSExcel 95/5.0 - 2003 Workbook.
XLSXOffice Open XML SpreadsheetML Workbook or template file, with or without macros.
XLSBExcel Binary Workbook.
XLSMExcel Macro-Enabled Workbook.
XLTExcel 97 - Excel 2003 Template.
XLTXExcel Template.
XLTMExcel Macro-Enabled Template.
XLAMAn Excel Macro-Enabled Add-In file that's used to add new functions to Excel. 
CSVCSV (Comma Separated Value) file.
TSVTSV (Tab-separated values) file.
TabDelimitedTab-delimited text file, same with TSV file.
TXTDelimited plain text file.
HTMLHTML format.
MHTMLMHTML file.
ODSODS (OpenDocument Spreadsheet).
SpreadsheetMLExcel 2003 XML file.
NumbersThe document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.
JSONJavaScript Object Notation
DIFData Interchange Format. 
PDFAdobe Portable Document Format. 
XPSXML Paper Specification Format. 
SVGScalable Vector Graphics Format. 
TIFFTagged Image File Format 
PNGPortable Network Graphics Format 
BMPBitmap Image Format 
EMFEnhanced metafile Format 
JPEGJPEG is a type of image format that is saved using the method of lossy compression. 
GIFGraphical Interchange Format 
MARKDOWNRepresents a markdown document. 
SXCAn XML based format used by OpenOffice and StarOffice
FODSThis is an Open Document format stored as flat XML.
DOCXA well-known format for Microsoft Word documents that is a combination of XML and binary files.
PPTXThe PPTX format is based on the Microsoft PowerPoint open XML presentation file format.

Quick Start Guide

To begin with Aspose.Cells Cloud, here's what you need to do:

  1. Sign up for an account at Aspose for Cloud to obtain your application details.
  2. 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
  1. 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'],'v3.0',ENV['CellsCloudApiBaseUrl'])

remote_folder = 'TestData/In'

local_name = 'Book1.xlsx'
remote_name = 'Book1.xlsx'

format = "csv"


mapFiles = { }   
mapFiles = { }               
mapFiles[local_name] = ::File.open(File.expand_path("TestData/"+local_name),"r")  

uploadrequest = AsposeCellsCloud::UploadFileRequest.new( { :UploadFiles=>mapFiles,:path=>remote_folder })
@instance.upload_file(uploadrequest)
mapFiles[local_name]= ::File.open(File.expand_path("TestData/"+local_name),"r")
request =   AsposeCellsCloud::PutConvertWorkbookRequest.new(:File=>mapFiles,:format=>format);
@instance.put_convert_workbook(request);

.NETJavaPHPPythonNode.jsAndroidSwiftPerlGO
GitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHubGitHub
NuGetMavenComposerPIPNPMMavenPODCPANGO

Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial

Release history version

FAQs

Package last updated on 27 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc