Skip to content

Commit 1421466

Browse files
committed
Aspose.Cells.Cloud SDK for Ruby 18.11.
0 parents  commit 1421466

File tree

761 files changed

+115402
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

761 files changed

+115402
-0
lines changed

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Generated by: https://github.com/swagger-api/swagger-codegen.git
2+
#
3+
4+
*.gem
5+
*.rbc
6+
/.config
7+
/coverage/
8+
/InstalledFiles
9+
/pkg/
10+
/spec/reports/
11+
/spec/examples.txt
12+
/test/tmp/
13+
/test/version_tmp/
14+
/tmp/
15+
16+
## Specific to RubyMotion:
17+
.dat*
18+
.repl_history
19+
build/
20+
21+
## Documentation cache and generated files:
22+
/.yardoc/
23+
/_yardoc/
24+
/doc/
25+
/rdoc/
26+
27+
## Environment normalization:
28+
/.bundle/
29+
/vendor/bundle
30+
/lib/bundler/man/
31+
32+
# for a library or gem, you might want to ignore these files since the code is
33+
# intended to run in multiple environments; otherwise, check them in:
34+
# Gemfile.lock
35+
# .ruby-version
36+
# .ruby-gemset
37+
38+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
39+
.rvmrc

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--require spec_helper

.swagger-codegen-ignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Swagger Codegen Ignore
2+
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.swagger-codegen/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.3.0-SNAPSHOT

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec
4+
5+
group :development, :test do
6+
gem 'rake', '~> 12.0.0'
7+
end

README.md

Lines changed: 575 additions & 0 deletions
Large diffs are not rendered by default.

Rakefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
begin
2+
require 'rspec/core/rake_task'
3+
4+
RSpec::Core::RakeTask.new(:spec)
5+
task default: :spec
6+
rescue LoadError
7+
# no rspec available
8+
end

aspose_cells_cloud.gemspec

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# -*- encoding: utf-8 -*-
2+
#
3+
=begin
4+
#Web API Swagger specification
5+
6+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
7+
8+
OpenAPI spec version: 1.0
9+
10+
Generated by: https://github.com/swagger-api/swagger-codegen.git
11+
Swagger Codegen version: 2.3.0-SNAPSHOT
12+
13+
=end
14+
15+
$:.push File.expand_path("../lib", __FILE__)
16+
require "aspose_cells_cloud/version"
17+
18+
Gem::Specification.new do |s|
19+
s.name = "aspose_cells_cloud"
20+
s.version = AsposeCellsCloud::VERSION
21+
s.platform = Gem::Platform::RUBY
22+
s.authors = ["Swagger-Codegen"]
23+
s.email = [""]
24+
s.homepage = "https://github.com/swagger-api/swagger-codegen"
25+
s.summary = "Web API Swagger specification Ruby Gem"
26+
s.description = "No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)"
27+
# TODO uncommnet and update below with a proper license
28+
#s.license = "Apache 2.0"
29+
s.required_ruby_version = ">= 1.9"
30+
31+
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
32+
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
33+
34+
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
35+
s.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.1'
36+
s.add_development_dependency 'webmock', '~> 1.24', '>= 1.24.3'
37+
s.add_development_dependency 'autotest', '~> 4.4', '>= 4.4.6'
38+
s.add_development_dependency 'autotest-rails-pure', '~> 4.1', '>= 4.1.2'
39+
s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16'
40+
s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.12'
41+
42+
s.files = `find *`.split("\n").uniq.sort.select{|f| !f.empty? }
43+
s.test_files = `find spec/*`.split("\n")
44+
s.executables = []
45+
s.require_paths = ["lib"]
46+
end

docs/AboveAverage.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AsposeCellsCloud::AboveAverage
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**is_above_average** | **BOOLEAN** | Get or set the flag indicating whether the rule is an \&quot;above average\&quot; rule. &#39;true&#39; indicates &#39;above average&#39;. Default value is true. |
7+
**is_equal_average** | **BOOLEAN** | Get or set the flag indicating whether the &#39;aboveAverage&#39; and &#39;belowAverage&#39; criteria is inclusive of the average itself, or exclusive of that value. &#39;true&#39; indicates to include the average value in the criteria. Default value is false. |
8+
**std_dev** | **Integer** | Get or set the number of standard deviations to include above or below the average in the conditional formatting rule. The input value must between 0 and 3 (include 0 and 3). Setting this value to 0 means stdDev is not set. The default value is 0. |
9+
10+

docs/AccessTokenResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# AsposeCellsCloud::AccessTokenResponse
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**_expires** | **String** | | [optional]
7+
**access_token** | **String** | | [optional]
8+
**_issued** | **String** | | [optional]
9+
**client_refresh_token_life_time_in_minutes** | **String** | | [optional]
10+
**expires_in** | **Integer** | | [optional]
11+
**token_type** | **String** | | [optional]
12+
**client_id** | **String** | | [optional]
13+
**refresh_token** | **String** | | [optional]
14+
15+

0 commit comments

Comments
 (0)