Skip to content

Commit 7cc931d

Browse files
committed
Release Aspose.Cells Cloud SDK 20.10
1 parent 0ab436d commit 7cc931d

File tree

5 files changed

+27
-16
lines changed

5 files changed

+27
-16
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/20.9)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/20.10)
22

33

44
# Ruby SDK for Spreadsheet Processing in the Cloud
@@ -21,6 +21,11 @@ Ruby Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Mic
2121
- Convert worksheets to PDF, XPS & SVG formats.
2222
- [Convert Excel files to popular formats](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/).
2323

24+
## Feature & Enhancements in Version 20.10
25+
26+
- Support to upload large file.
27+
- Enhancement for post sparkline group API.
28+
2429
## Read & Write Spreadsheet Formats
2530

2631
**Microsoft Excel:** XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM
@@ -61,7 +66,7 @@ First, you need to register an account at [Aspose for Cloud](https://dashboard.a
6166
Next, execute the following command to get the latest Gem package.
6267

6368
```console
64-
gem 'aspose_cells_cloud', '~> 20.9'
69+
gem 'aspose_cells_cloud', '~> 20.10'
6570
```
6671

6772
or install directly

lib/aspose_cells_cloud/api/cells_api.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13788,11 +13788,10 @@ def cells_sparkline_groups_post_worksheet_sparkline_group_with_http_info(name, s
1378813788
fail ArgumentError, "Missing the required parameter 'sparkline_group' when calling CellsApi.cells_sparkline_groups_post_worksheet_sparkline_group"
1378913789
end
1379013790
# resource path
13791-
local_var_path = "/cells/{name}/worksheets/{sheetName}/sparklinegroups/{sparklineGroupIndex}".sub('{' + 'name' + '}', name.to_s).sub('{' + 'sheetName' + '}', sheet_name.to_s)
13791+
local_var_path = "/cells/{name}/worksheets/{sheetName}/sparklinegroups/{sparklineGroupIndex}".sub('{' + 'name' + '}', name.to_s).sub('{' + 'sheetName' + '}', sheet_name.to_s).sub('{' + 'sparklineGroupIndex' + '}', sparkline_group_index.to_s)
1379213792

1379313793
# query parameters
1379413794
query_params = {}
13795-
query_params[:'sparklineGroupIndex'] = sparkline_group_index
1379613795
query_params[:'folder'] = opts[:'folder'] if !opts[:'folder'].nil?
1379713796
query_params[:'storageName'] = opts[:'storage_name'] if !opts[:'storage_name'].nil?
1379813797

lib/aspose_cells_cloud/api_error.rb

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
=begin
2-
#Web API Swagger specification
3-
4-
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5-
6-
OpenAPI spec version: 1.0
7-
8-
Generated by: https://github.com/swagger-api/swagger-codegen.git
9-
Swagger Codegen version: 2.3.0-SNAPSHOT
2+
--------------------------------------------------------------------------------------------------------------------
3+
Copyright (c) 2020 Aspose.Cells Cloud
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
SOFTWARE.
19+
--------------------------------------------------------------------------------------------------------------------
1020
1121
=end
1222

lib/aspose_cells_cloud/configuration.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,7 @@ def host=(host)
159159
def base_url
160160
#url = "#{scheme}://#{[host, '/v3.0'].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '')
161161
url = "#{scheme}://#{[host, '/'+ api_version ].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '')
162-
# print(url)
163162
URI.encode(url)
164-
# URI.encode_www_form(url, enc=nil)
165-
# URI.encode_www_form_component(url, enc=nil)
166163
end
167164

168165
# Returns Auth Settings hash for api client.

lib/aspose_cells_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
=end
2222

2323
module AsposeCellsCloud
24-
VERSION = "20.9"
24+
VERSION = "20.10"
2525
end

0 commit comments

Comments
 (0)