aspose_diagram_cloud 18.10.1 → 18.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile +7 -0
- data/README.md +126 -0
- data/Rakefile +8 -0
- data/aspose_diagram_cloud-18.10.1.gem +0 -0
- data/aspose_diagram_cloud-18.10.gem +0 -0
- data/aspose_diagram_cloud.gemspec +46 -0
- data/docs/AccessTokenResponse.md +15 -0
- data/docs/DiagramFileApi.md +228 -0
- data/docs/DiagramModel.md +9 -0
- data/docs/DiagramResponse.md +10 -0
- data/docs/FileFormatRequest.md +8 -0
- data/docs/Link.md +11 -0
- data/docs/OAuthApi.md +60 -0
- data/docs/PageModel.md +9 -0
- data/docs/SaaSposeResponse.md +9 -0
- data/docs/SaveResponse.md +10 -0
- data/docs/SaveResult.md +10 -0
- data/docs/SharpModel.md +8 -0
- data/git_push.sh +55 -0
- data/lib/aspose_diagram_cloud.rb +51 -0
- data/lib/aspose_diagram_cloud/api/diagram_file_api.rb +284 -0
- data/lib/aspose_diagram_cloud/api/o_auth_api.rb +93 -0
- data/lib/aspose_diagram_cloud/api_client.rb +389 -0
- data/lib/aspose_diagram_cloud/api_error.rb +38 -0
- data/lib/aspose_diagram_cloud/configuration.rb +223 -0
- data/lib/aspose_diagram_cloud/models/access_token_response.rb +251 -0
- data/lib/aspose_diagram_cloud/models/diagram_model.rb +199 -0
- data/lib/aspose_diagram_cloud/models/diagram_response.rb +211 -0
- data/lib/aspose_diagram_cloud/models/file_format_request.rb +188 -0
- data/lib/aspose_diagram_cloud/models/link.rb +215 -0
- data/lib/aspose_diagram_cloud/models/page_model.rb +199 -0
- data/lib/aspose_diagram_cloud/models/saa_spose_response.rb +202 -0
- data/lib/aspose_diagram_cloud/models/save_response.rb +211 -0
- data/lib/aspose_diagram_cloud/models/save_result.rb +208 -0
- data/lib/aspose_diagram_cloud/models/sharp_model.rb +188 -0
- data/lib/aspose_diagram_cloud/version.rb +15 -0
- data/spec/api/diagram_file_api_spec.rb +126 -0
- data/spec/api/o_auth_api_spec.rb +56 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/access_token_response_spec.rb +84 -0
- data/spec/models/diagram_model_spec.rb +48 -0
- data/spec/models/diagram_response_spec.rb +54 -0
- data/spec/models/file_format_request_spec.rb +42 -0
- data/spec/models/link_spec.rb +60 -0
- data/spec/models/page_model_spec.rb +48 -0
- data/spec/models/saa_spose_response_spec.rb +48 -0
- data/spec/models/save_response_spec.rb +54 -0
- data/spec/models/save_result_spec.rb +54 -0
- data/spec/models/sharp_model_spec.rb +42 -0
- data/spec/spec_helper.rb +116 -0
- metadata +108 -42
@@ -0,0 +1,54 @@
|
|
1
|
+
=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
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AsposeDiagramCloud::SaveResult
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SaveResult' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = AsposeDiagramCloud::SaveResult.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SaveResult' do
|
31
|
+
it 'should create an instance of SaveResult' do
|
32
|
+
expect(@instance).to be_instance_of(AsposeDiagramCloud::SaveResult)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "source_document"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "dest_document"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "additional_items"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
=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
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AsposeDiagramCloud::SharpModel
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SharpModel' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = AsposeDiagramCloud::SharpModel.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SharpModel' do
|
31
|
+
it 'should create an instance of SharpModel' do
|
32
|
+
expect(@instance).to be_instance_of(AsposeDiagramCloud::SharpModel)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
=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
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'aspose_diagram_cloud'
|
15
|
+
$grant_type = 'client_credentials' # replace NULL with a proper value
|
16
|
+
$client_id = 'xxxxxxx' # replace NULL with a proper value
|
17
|
+
$client_secret = 'xxxxxxxx' # replace NULL with a proper value
|
18
|
+
$access_token
|
19
|
+
$TEMPFOLDER = "Temp"
|
20
|
+
|
21
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
22
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
23
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
24
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
25
|
+
# files.
|
26
|
+
#
|
27
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
28
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
29
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
30
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
31
|
+
# a separate helper file that requires the additional dependencies and performs
|
32
|
+
# the additional setup, and require it from the spec files that actually need
|
33
|
+
# it.
|
34
|
+
#
|
35
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
36
|
+
# users commonly want.
|
37
|
+
#
|
38
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
39
|
+
RSpec.configure do |config|
|
40
|
+
# rspec-expectations config goes here. You can use an alternate
|
41
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
42
|
+
# assertions if you prefer.
|
43
|
+
config.expect_with :rspec do |expectations|
|
44
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
45
|
+
# and `failure_message` of custom matchers include text for helper methods
|
46
|
+
# defined using `chain`, e.g.:
|
47
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
48
|
+
# # => "be bigger than 2 and smaller than 4"
|
49
|
+
# ...rather than:
|
50
|
+
# # => "be bigger than 2"
|
51
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
52
|
+
end
|
53
|
+
|
54
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
55
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
56
|
+
config.mock_with :rspec do |mocks|
|
57
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
58
|
+
# a real object. This is generally recommended, and will default to
|
59
|
+
# `true` in RSpec 4.
|
60
|
+
mocks.verify_partial_doubles = true
|
61
|
+
end
|
62
|
+
|
63
|
+
# The settings below are suggested to provide a good initial experience
|
64
|
+
# with RSpec, but feel free to customize to your heart's content.
|
65
|
+
=begin
|
66
|
+
# These two settings work together to allow you to limit a spec run
|
67
|
+
# to individual examples or groups you care about by tagging them with
|
68
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
69
|
+
# get run.
|
70
|
+
config.filter_run :focus
|
71
|
+
config.run_all_when_everything_filtered = true
|
72
|
+
|
73
|
+
# Allows RSpec to persist some state between runs in order to support
|
74
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
75
|
+
# you configure your source control system to ignore this file.
|
76
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
77
|
+
|
78
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
79
|
+
# recommended. For more details, see:
|
80
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
81
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
82
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
83
|
+
config.disable_monkey_patching!
|
84
|
+
|
85
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
86
|
+
# be too noisy due to issues in dependencies.
|
87
|
+
config.warnings = true
|
88
|
+
|
89
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
90
|
+
# file, and it's useful to allow more verbose output when running an
|
91
|
+
# individual spec file.
|
92
|
+
if config.files_to_run.one?
|
93
|
+
# Use the documentation formatter for detailed output,
|
94
|
+
# unless a formatter has already been configured
|
95
|
+
# (e.g. via a command-line flag).
|
96
|
+
config.default_formatter = 'doc'
|
97
|
+
end
|
98
|
+
|
99
|
+
# Print the 10 slowest examples and example groups at the
|
100
|
+
# end of the spec run, to help surface which specs are running
|
101
|
+
# particularly slow.
|
102
|
+
config.profile_examples = 10
|
103
|
+
|
104
|
+
# Run specs in random order to surface order dependencies. If you find an
|
105
|
+
# order dependency and want to debug it, you can fix the order by providing
|
106
|
+
# the seed, which is printed after each run.
|
107
|
+
# --seed 1234
|
108
|
+
config.order = :random
|
109
|
+
|
110
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
111
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
112
|
+
# test failures related to randomization by passing the same `--seed` value
|
113
|
+
# as the one that triggered the failure.
|
114
|
+
Kernel.srand config.seed
|
115
|
+
=end
|
116
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_diagram_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 18.10.
|
4
|
+
version: 18.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aspose Diagram Cloud
|
@@ -14,180 +14,180 @@ dependencies:
|
|
14
14
|
name: typhoeus
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.0'
|
20
|
-
- -
|
20
|
+
- - '>='
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 1.0.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '1.0'
|
30
|
-
- -
|
30
|
+
- - '>='
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.0.1
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: json
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- -
|
37
|
+
- - ~>
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '2.1'
|
40
|
-
- -
|
40
|
+
- - '>='
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 2.1.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - ~>
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: '2.1'
|
50
|
-
- -
|
50
|
+
- - '>='
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 2.1.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- -
|
57
|
+
- - ~>
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '3.6'
|
60
|
-
- -
|
60
|
+
- - '>='
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 3.6.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- -
|
67
|
+
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '3.6'
|
70
|
-
- -
|
70
|
+
- - '>='
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 3.6.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: vcr
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- -
|
77
|
+
- - ~>
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: '3.0'
|
80
|
-
- -
|
80
|
+
- - '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 3.0.1
|
83
83
|
type: :development
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - ~>
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '3.0'
|
90
|
-
- -
|
90
|
+
- - '>='
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 3.0.1
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: webmock
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
-
- -
|
97
|
+
- - ~>
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: '1.24'
|
100
|
-
- -
|
100
|
+
- - '>='
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: 1.24.3
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- -
|
107
|
+
- - ~>
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '1.24'
|
110
|
-
- -
|
110
|
+
- - '>='
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: 1.24.3
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: autotest
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
|
-
- -
|
117
|
+
- - ~>
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: '4.4'
|
120
|
-
- -
|
120
|
+
- - '>='
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: 4.4.6
|
123
123
|
type: :development
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
|
-
- -
|
127
|
+
- - ~>
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '4.4'
|
130
|
-
- -
|
130
|
+
- - '>='
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: 4.4.6
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: autotest-rails-pure
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- -
|
137
|
+
- - ~>
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: '4.1'
|
140
|
-
- -
|
140
|
+
- - '>='
|
141
141
|
- !ruby/object:Gem::Version
|
142
142
|
version: 4.1.2
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
|
-
- -
|
147
|
+
- - ~>
|
148
148
|
- !ruby/object:Gem::Version
|
149
149
|
version: '4.1'
|
150
|
-
- -
|
150
|
+
- - '>='
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 4.1.2
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: autotest-growl
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- -
|
157
|
+
- - ~>
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0.2'
|
160
|
-
- -
|
160
|
+
- - '>='
|
161
161
|
- !ruby/object:Gem::Version
|
162
162
|
version: 0.2.16
|
163
163
|
type: :development
|
164
164
|
prerelease: false
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
166
166
|
requirements:
|
167
|
-
- -
|
167
|
+
- - ~>
|
168
168
|
- !ruby/object:Gem::Version
|
169
169
|
version: '0.2'
|
170
|
-
- -
|
170
|
+
- - '>='
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: 0.2.16
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: autotest-fsevent
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- -
|
177
|
+
- - ~>
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: '0.2'
|
180
|
-
- -
|
180
|
+
- - '>='
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: 0.2.12
|
183
183
|
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
|
-
- -
|
187
|
+
- - ~>
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: '0.2'
|
190
|
-
- -
|
190
|
+
- - '>='
|
191
191
|
- !ruby/object:Gem::Version
|
192
192
|
version: 0.2.12
|
193
193
|
description: Ruby library for communicating with the Aspose.Diagram Cloud API
|
@@ -196,7 +196,58 @@ email:
|
|
196
196
|
executables: []
|
197
197
|
extensions: []
|
198
198
|
extra_rdoc_files: []
|
199
|
-
files:
|
199
|
+
files:
|
200
|
+
- Gemfile
|
201
|
+
- README.md
|
202
|
+
- Rakefile
|
203
|
+
- aspose_diagram_cloud-18.10.1.gem
|
204
|
+
- aspose_diagram_cloud-18.10.gem
|
205
|
+
- aspose_diagram_cloud.gemspec
|
206
|
+
- docs/AccessTokenResponse.md
|
207
|
+
- docs/DiagramFileApi.md
|
208
|
+
- docs/DiagramModel.md
|
209
|
+
- docs/DiagramResponse.md
|
210
|
+
- docs/FileFormatRequest.md
|
211
|
+
- docs/Link.md
|
212
|
+
- docs/OAuthApi.md
|
213
|
+
- docs/PageModel.md
|
214
|
+
- docs/SaaSposeResponse.md
|
215
|
+
- docs/SaveResponse.md
|
216
|
+
- docs/SaveResult.md
|
217
|
+
- docs/SharpModel.md
|
218
|
+
- git_push.sh
|
219
|
+
- lib/aspose_diagram_cloud.rb
|
220
|
+
- lib/aspose_diagram_cloud/api/diagram_file_api.rb
|
221
|
+
- lib/aspose_diagram_cloud/api/o_auth_api.rb
|
222
|
+
- lib/aspose_diagram_cloud/api_client.rb
|
223
|
+
- lib/aspose_diagram_cloud/api_error.rb
|
224
|
+
- lib/aspose_diagram_cloud/configuration.rb
|
225
|
+
- lib/aspose_diagram_cloud/models/access_token_response.rb
|
226
|
+
- lib/aspose_diagram_cloud/models/diagram_model.rb
|
227
|
+
- lib/aspose_diagram_cloud/models/diagram_response.rb
|
228
|
+
- lib/aspose_diagram_cloud/models/file_format_request.rb
|
229
|
+
- lib/aspose_diagram_cloud/models/link.rb
|
230
|
+
- lib/aspose_diagram_cloud/models/page_model.rb
|
231
|
+
- lib/aspose_diagram_cloud/models/saa_spose_response.rb
|
232
|
+
- lib/aspose_diagram_cloud/models/save_response.rb
|
233
|
+
- lib/aspose_diagram_cloud/models/save_result.rb
|
234
|
+
- lib/aspose_diagram_cloud/models/sharp_model.rb
|
235
|
+
- lib/aspose_diagram_cloud/version.rb
|
236
|
+
- spec/api/diagram_file_api_spec.rb
|
237
|
+
- spec/api/o_auth_api_spec.rb
|
238
|
+
- spec/api_client_spec.rb
|
239
|
+
- spec/configuration_spec.rb
|
240
|
+
- spec/models/access_token_response_spec.rb
|
241
|
+
- spec/models/diagram_model_spec.rb
|
242
|
+
- spec/models/diagram_response_spec.rb
|
243
|
+
- spec/models/file_format_request_spec.rb
|
244
|
+
- spec/models/link_spec.rb
|
245
|
+
- spec/models/page_model_spec.rb
|
246
|
+
- spec/models/saa_spose_response_spec.rb
|
247
|
+
- spec/models/save_response_spec.rb
|
248
|
+
- spec/models/save_result_spec.rb
|
249
|
+
- spec/models/sharp_model_spec.rb
|
250
|
+
- spec/spec_helper.rb
|
200
251
|
homepage: https://github.com/aspose-diagram-cloud/aspose-diagram-cloud-ruby
|
201
252
|
licenses:
|
202
253
|
- MIT
|
@@ -207,18 +258,33 @@ require_paths:
|
|
207
258
|
- lib
|
208
259
|
required_ruby_version: !ruby/object:Gem::Requirement
|
209
260
|
requirements:
|
210
|
-
- -
|
261
|
+
- - '>='
|
211
262
|
- !ruby/object:Gem::Version
|
212
263
|
version: '1.9'
|
213
264
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
214
265
|
requirements:
|
215
|
-
- -
|
266
|
+
- - '>='
|
216
267
|
- !ruby/object:Gem::Version
|
217
268
|
version: '0'
|
218
269
|
requirements: []
|
219
270
|
rubyforge_project:
|
220
|
-
rubygems_version: 2.
|
271
|
+
rubygems_version: 2.0.14.1
|
221
272
|
signing_key:
|
222
273
|
specification_version: 4
|
223
274
|
summary: Aspose.Diagram Cloud API
|
224
|
-
test_files:
|
275
|
+
test_files:
|
276
|
+
- spec/api/diagram_file_api_spec.rb
|
277
|
+
- spec/api/o_auth_api_spec.rb
|
278
|
+
- spec/api_client_spec.rb
|
279
|
+
- spec/configuration_spec.rb
|
280
|
+
- spec/models/access_token_response_spec.rb
|
281
|
+
- spec/models/diagram_model_spec.rb
|
282
|
+
- spec/models/diagram_response_spec.rb
|
283
|
+
- spec/models/file_format_request_spec.rb
|
284
|
+
- spec/models/link_spec.rb
|
285
|
+
- spec/models/page_model_spec.rb
|
286
|
+
- spec/models/saa_spose_response_spec.rb
|
287
|
+
- spec/models/save_response_spec.rb
|
288
|
+
- spec/models/save_result_spec.rb
|
289
|
+
- spec/models/sharp_model_spec.rb
|
290
|
+
- spec/spec_helper.rb
|