rustici_software_cloud_v2 1.0.0beta
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +7 -0
- data/LICENSE +201 -0
- data/README.md +283 -0
- data/Rakefile +8 -0
- data/docs/ActivityResultSchema.md +20 -0
- data/docs/ApplicationListSchema.md +8 -0
- data/docs/ApplicationManagementApi.md +570 -0
- data/docs/ApplicationSchema.md +9 -0
- data/docs/ApplicationToken.md +10 -0
- data/docs/AuthenticationApi.md +64 -0
- data/docs/CommentSchema.md +10 -0
- data/docs/CompletionAmountSchema.md +8 -0
- data/docs/CourseActivitySchema.md +15 -0
- data/docs/CourseApi.md +1459 -0
- data/docs/CourseListNonPagedSchema.md +8 -0
- data/docs/CourseListSchema.md +9 -0
- data/docs/CourseReferenceSchema.md +10 -0
- data/docs/CourseSchema.md +20 -0
- data/docs/CourseTagsBatchSchema.md +9 -0
- data/docs/CreateRegistrationSchema.md +17 -0
- data/docs/CredentialCreatedSchema.md +12 -0
- data/docs/CredentialListSchema.md +8 -0
- data/docs/CredentialRequestSchema.md +9 -0
- data/docs/CredentialSchema.md +12 -0
- data/docs/ImportFetchRequestSchema.md +8 -0
- data/docs/ImportJobResultSchema.md +11 -0
- data/docs/ImportResultSchema.md +11 -0
- data/docs/IntegerResultSchema.md +8 -0
- data/docs/ItemValuePairSchema.md +9 -0
- data/docs/LaunchHistoryListSchema.md +8 -0
- data/docs/LaunchHistorySchema.md +17 -0
- data/docs/LaunchLinkRequestSchema.md +17 -0
- data/docs/LaunchLinkSchema.md +8 -0
- data/docs/LearnerPreferenceSchema.md +11 -0
- data/docs/LearnerSchema.md +11 -0
- data/docs/LinkSchema.md +8 -0
- data/docs/MessageSchema.md +8 -0
- data/docs/MetadataSchema.md +14 -0
- data/docs/ObjectiveSchema.md +20 -0
- data/docs/PermissionsSchema.md +9 -0
- data/docs/PingApi.md +57 -0
- data/docs/PingSchema.md +8 -0
- data/docs/PostBackSchema.md +12 -0
- data/docs/RegistrationApi.md +1490 -0
- data/docs/RegistrationCompletion.md +7 -0
- data/docs/RegistrationListSchema.md +9 -0
- data/docs/RegistrationSchema.md +27 -0
- data/docs/RegistrationSuccess.md +7 -0
- data/docs/RegistrationTagsBatchSchema.md +9 -0
- data/docs/ResponseError.md +8 -0
- data/docs/RuntimeInteractionSchema.md +18 -0
- data/docs/RuntimeObjectiveSchema.md +16 -0
- data/docs/RuntimeSchema.md +27 -0
- data/docs/ScoreSchema.md +8 -0
- data/docs/SettingItem.md +12 -0
- data/docs/SettingListSchema.md +8 -0
- data/docs/SettingMetadata.md +15 -0
- data/docs/SettingMetadataValidValues.md +9 -0
- data/docs/SettingValidValue.md +9 -0
- data/docs/SettingsIndividualSchema.md +10 -0
- data/docs/SettingsPostSchema.md +8 -0
- data/docs/SharedDataEntrySchema.md +9 -0
- data/docs/StaticPropertiesSchema.md +13 -0
- data/docs/StringResultSchema.md +8 -0
- data/docs/TagListSchema.md +8 -0
- data/docs/TagPostSchema.md +7 -0
- data/docs/TitleSchema.md +8 -0
- data/docs/TokenRequestSchema.md +9 -0
- data/docs/XapiAccount.md +9 -0
- data/docs/XapiActivity.md +10 -0
- data/docs/XapiActivityDefinition.md +19 -0
- data/docs/XapiAgentGroup.md +14 -0
- data/docs/XapiAttachment.md +14 -0
- data/docs/XapiContext.md +16 -0
- data/docs/XapiContextActivity.md +11 -0
- data/docs/XapiInteractionComponent.md +9 -0
- data/docs/XapiResult.md +13 -0
- data/docs/XapiScore.md +11 -0
- data/docs/XapiStatement.md +20 -0
- data/docs/XapiStatementReference.md +9 -0
- data/docs/XapiStatementResult.md +9 -0
- data/docs/XapiVerb.md +9 -0
- data/git_push.sh +55 -0
- data/lib/rustici_software_cloud_v2.rb +116 -0
- data/lib/rustici_software_cloud_v2/api/application_management_api.rb +574 -0
- data/lib/rustici_software_cloud_v2/api/authentication_api.rb +87 -0
- data/lib/rustici_software_cloud_v2/api/course_api.rb +1469 -0
- data/lib/rustici_software_cloud_v2/api/ping_api.rb +69 -0
- data/lib/rustici_software_cloud_v2/api/registration_api.rb +1499 -0
- data/lib/rustici_software_cloud_v2/api_client.rb +389 -0
- data/lib/rustici_software_cloud_v2/api_error.rb +38 -0
- data/lib/rustici_software_cloud_v2/configuration.rb +237 -0
- data/lib/rustici_software_cloud_v2/models/activity_result_schema.rb +341 -0
- data/lib/rustici_software_cloud_v2/models/application_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/application_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/application_token.rb +201 -0
- data/lib/rustici_software_cloud_v2/models/comment_schema.rb +201 -0
- data/lib/rustici_software_cloud_v2/models/completion_amount_schema.rb +184 -0
- data/lib/rustici_software_cloud_v2/models/course_activity_schema.rb +289 -0
- data/lib/rustici_software_cloud_v2/models/course_list_non_paged_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/course_list_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/course_reference_schema.rb +202 -0
- data/lib/rustici_software_cloud_v2/models/course_schema.rb +328 -0
- data/lib/rustici_software_cloud_v2/models/course_tags_batch_schema.rb +204 -0
- data/lib/rustici_software_cloud_v2/models/create_registration_schema.rb +287 -0
- data/lib/rustici_software_cloud_v2/models/credential_created_schema.rb +223 -0
- data/lib/rustici_software_cloud_v2/models/credential_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/credential_request_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/credential_schema.rb +223 -0
- data/lib/rustici_software_cloud_v2/models/import_fetch_request_schema.rb +190 -0
- data/lib/rustici_software_cloud_v2/models/import_job_result_schema.rb +244 -0
- data/lib/rustici_software_cloud_v2/models/import_result_schema.rb +215 -0
- data/lib/rustici_software_cloud_v2/models/integer_result_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/item_value_pair_schema.rb +192 -0
- data/lib/rustici_software_cloud_v2/models/launch_history_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/launch_history_schema.rb +317 -0
- data/lib/rustici_software_cloud_v2/models/launch_link_request_schema.rb +282 -0
- data/lib/rustici_software_cloud_v2/models/launch_link_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/learner_preference_schema.rb +210 -0
- data/lib/rustici_software_cloud_v2/models/learner_schema.rb +216 -0
- data/lib/rustici_software_cloud_v2/models/link_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/message_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/metadata_schema.rb +239 -0
- data/lib/rustici_software_cloud_v2/models/objective_schema.rb +355 -0
- data/lib/rustici_software_cloud_v2/models/permissions_schema.rb +195 -0
- data/lib/rustici_software_cloud_v2/models/ping_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/post_back_schema.rb +273 -0
- data/lib/rustici_software_cloud_v2/models/registration_completion.rb +31 -0
- data/lib/rustici_software_cloud_v2/models/registration_list_schema.rb +199 -0
- data/lib/rustici_software_cloud_v2/models/registration_schema.rb +360 -0
- data/lib/rustici_software_cloud_v2/models/registration_success.rb +31 -0
- data/lib/rustici_software_cloud_v2/models/registration_tags_batch_schema.rb +204 -0
- data/lib/rustici_software_cloud_v2/models/response_error.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/runtime_interaction_schema.rb +311 -0
- data/lib/rustici_software_cloud_v2/models/runtime_objective_schema.rb +305 -0
- data/lib/rustici_software_cloud_v2/models/runtime_schema.rb +398 -0
- data/lib/rustici_software_cloud_v2/models/score_schema.rb +184 -0
- data/lib/rustici_software_cloud_v2/models/setting_item.rb +256 -0
- data/lib/rustici_software_cloud_v2/models/setting_list_schema.rb +190 -0
- data/lib/rustici_software_cloud_v2/models/setting_metadata.rb +294 -0
- data/lib/rustici_software_cloud_v2/models/setting_metadata_valid_values.rb +209 -0
- data/lib/rustici_software_cloud_v2/models/setting_valid_value.rb +193 -0
- data/lib/rustici_software_cloud_v2/models/settings_individual_schema.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/settings_post_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/shared_data_entry_schema.rb +192 -0
- data/lib/rustici_software_cloud_v2/models/static_properties_schema.rb +228 -0
- data/lib/rustici_software_cloud_v2/models/string_result_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/tag_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/tag_post_schema.rb +174 -0
- data/lib/rustici_software_cloud_v2/models/title_schema.rb +183 -0
- data/lib/rustici_software_cloud_v2/models/token_request_schema.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/xapi_account.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/xapi_activity.rb +209 -0
- data/lib/rustici_software_cloud_v2/models/xapi_activity_definition.rb +301 -0
- data/lib/rustici_software_cloud_v2/models/xapi_agent_group.rb +279 -0
- data/lib/rustici_software_cloud_v2/models/xapi_attachment.rb +267 -0
- data/lib/rustici_software_cloud_v2/models/xapi_context.rb +258 -0
- data/lib/rustici_software_cloud_v2/models/xapi_context_activity.rb +219 -0
- data/lib/rustici_software_cloud_v2/models/xapi_interaction_component.rb +200 -0
- data/lib/rustici_software_cloud_v2/models/xapi_result.rb +231 -0
- data/lib/rustici_software_cloud_v2/models/xapi_score.rb +211 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement.rb +294 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement_reference.rb +205 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement_result.rb +200 -0
- data/lib/rustici_software_cloud_v2/models/xapi_verb.rb +200 -0
- data/lib/rustici_software_cloud_v2/version.rb +15 -0
- data/rustici_software_cloud_v2.gemspec +45 -0
- data/spec/api_client_spec.rb +237 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/activity_result_schema_spec.rb +133 -0
- data/spec/models/application_list_schema_spec.rb +53 -0
- data/spec/models/application_schema_spec.rb +59 -0
- data/spec/models/application_token_spec.rb +65 -0
- data/spec/models/comment_schema_spec.rb +65 -0
- data/spec/models/completion_amount_schema_spec.rb +53 -0
- data/spec/models/course_activity_schema_spec.rb +99 -0
- data/spec/models/course_list_non_paged_schema_spec.rb +53 -0
- data/spec/models/course_list_schema_spec.rb +59 -0
- data/spec/models/course_reference_schema_spec.rb +65 -0
- data/spec/models/course_schema_spec.rb +129 -0
- data/spec/models/create_registration_schema_spec.rb +107 -0
- data/spec/models/credential_created_schema_spec.rb +77 -0
- data/spec/models/credential_list_schema_spec.rb +53 -0
- data/spec/models/credential_request_schema_spec.rb +59 -0
- data/spec/models/credential_schema_spec.rb +77 -0
- data/spec/models/import_fetch_request_schema_spec.rb +53 -0
- data/spec/models/import_job_result_schema_spec.rb +75 -0
- data/spec/models/import_result_schema_spec.rb +71 -0
- data/spec/models/integer_result_schema_spec.rb +53 -0
- data/spec/models/item_value_pair_schema_spec.rb +59 -0
- data/spec/models/launch_history_list_schema_spec.rb +53 -0
- data/spec/models/launch_history_schema_spec.rb +115 -0
- data/spec/models/launch_link_request_schema_spec.rb +107 -0
- data/spec/models/launch_link_schema_spec.rb +53 -0
- data/spec/models/learner_preference_schema_spec.rb +71 -0
- data/spec/models/learner_schema_spec.rb +71 -0
- data/spec/models/link_schema_spec.rb +53 -0
- data/spec/models/message_schema_spec.rb +53 -0
- data/spec/models/metadata_schema_spec.rb +89 -0
- data/spec/models/objective_schema_spec.rb +137 -0
- data/spec/models/permissions_schema_spec.rb +59 -0
- data/spec/models/ping_schema_spec.rb +53 -0
- data/spec/models/post_back_schema_spec.rb +85 -0
- data/spec/models/registration_completion_spec.rb +47 -0
- data/spec/models/registration_list_schema_spec.rb +59 -0
- data/spec/models/registration_schema_spec.rb +167 -0
- data/spec/models/registration_success_spec.rb +47 -0
- data/spec/models/response_error_spec.rb +53 -0
- data/spec/models/runtime_interaction_schema_spec.rb +117 -0
- data/spec/models/runtime_objective_schema_spec.rb +109 -0
- data/spec/models/runtime_schema_spec.rb +171 -0
- data/spec/models/score_schema_spec.rb +53 -0
- data/spec/models/setting_item_spec.rb +81 -0
- data/spec/models/setting_list_schema_spec.rb +53 -0
- data/spec/models/setting_metadata_spec.rb +99 -0
- data/spec/models/setting_metadata_valid_values_spec.rb +59 -0
- data/spec/models/settings_individual_schema_spec.rb +65 -0
- data/spec/models/settings_post_schema_spec.rb +53 -0
- data/spec/models/shared_data_entry_schema_spec.rb +59 -0
- data/spec/models/static_properties_schema_spec.rb +83 -0
- data/spec/models/string_result_schema_spec.rb +53 -0
- data/spec/models/title_schema_spec.rb +53 -0
- data/spec/models/token_request_schema_spec.rb +59 -0
- data/spec/spec_helper.rb +122 -0
- data/swagger-codegen.config +11 -0
- metadata +526 -0
@@ -0,0 +1,83 @@
|
|
1
|
+
=begin
|
2
|
+
#SCORM Cloud Rest API
|
3
|
+
|
4
|
+
#REST API used for SCORM Cloud integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0 beta
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for RusticiSoftwareCloudV2::StaticPropertiesSchema
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'StaticPropertiesSchema' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = RusticiSoftwareCloudV2::StaticPropertiesSchema.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of StaticPropertiesSchema' do
|
42
|
+
it 'should create an instact of StaticPropertiesSchema' do
|
43
|
+
expect(@instance).to be_instance_of(RusticiSoftwareCloudV2::StaticPropertiesSchema)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "completion_threshold"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "launch_data"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "max_time_allowed"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "scaled_passing_score"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "scaled_passing_score_used"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "time_limit_action"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
end
|
83
|
+
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#SCORM Cloud Rest API
|
3
|
+
|
4
|
+
#REST API used for SCORM Cloud integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0 beta
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for RusticiSoftwareCloudV2::StringResultSchema
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'StringResultSchema' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = RusticiSoftwareCloudV2::StringResultSchema.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of StringResultSchema' do
|
42
|
+
it 'should create an instact of StringResultSchema' do
|
43
|
+
expect(@instance).to be_instance_of(RusticiSoftwareCloudV2::StringResultSchema)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "result"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#SCORM Cloud Rest API
|
3
|
+
|
4
|
+
#REST API used for SCORM Cloud integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0 beta
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for RusticiSoftwareCloudV2::TitleSchema
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'TitleSchema' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = RusticiSoftwareCloudV2::TitleSchema.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of TitleSchema' do
|
42
|
+
it 'should create an instact of TitleSchema' do
|
43
|
+
expect(@instance).to be_instance_of(RusticiSoftwareCloudV2::TitleSchema)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "title"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#SCORM Cloud Rest API
|
3
|
+
|
4
|
+
#REST API used for SCORM Cloud integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0 beta
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for RusticiSoftwareCloudV2::TokenRequestSchema
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'TokenRequestSchema' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = RusticiSoftwareCloudV2::TokenRequestSchema.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of TokenRequestSchema' do
|
42
|
+
it 'should create an instact of TokenRequestSchema' do
|
43
|
+
expect(@instance).to be_instance_of(RusticiSoftwareCloudV2::TokenRequestSchema)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "permissions"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "expiry"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
=begin
|
2
|
+
#SCORM Cloud Rest API
|
3
|
+
|
4
|
+
#REST API used for SCORM Cloud integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0 beta
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
# load the gem
|
25
|
+
require 'rustici_software_cloud_v2'
|
26
|
+
|
27
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
28
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
29
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
30
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
31
|
+
# files.
|
32
|
+
#
|
33
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
34
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
35
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
36
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
37
|
+
# a separate helper file that requires the additional dependencies and performs
|
38
|
+
# the additional setup, and require it from the spec files that actually need
|
39
|
+
# it.
|
40
|
+
#
|
41
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
42
|
+
# users commonly want.
|
43
|
+
#
|
44
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
45
|
+
RSpec.configure do |config|
|
46
|
+
# rspec-expectations config goes here. You can use an alternate
|
47
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
48
|
+
# assertions if you prefer.
|
49
|
+
config.expect_with :rspec do |expectations|
|
50
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
51
|
+
# and `failure_message` of custom matchers include text for helper methods
|
52
|
+
# defined using `chain`, e.g.:
|
53
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
54
|
+
# # => "be bigger than 2 and smaller than 4"
|
55
|
+
# ...rather than:
|
56
|
+
# # => "be bigger than 2"
|
57
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
58
|
+
end
|
59
|
+
|
60
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
61
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
62
|
+
config.mock_with :rspec do |mocks|
|
63
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
64
|
+
# a real object. This is generally recommended, and will default to
|
65
|
+
# `true` in RSpec 4.
|
66
|
+
mocks.verify_partial_doubles = true
|
67
|
+
end
|
68
|
+
|
69
|
+
# The settings below are suggested to provide a good initial experience
|
70
|
+
# with RSpec, but feel free to customize to your heart's content.
|
71
|
+
=begin
|
72
|
+
# These two settings work together to allow you to limit a spec run
|
73
|
+
# to individual examples or groups you care about by tagging them with
|
74
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
75
|
+
# get run.
|
76
|
+
config.filter_run :focus
|
77
|
+
config.run_all_when_everything_filtered = true
|
78
|
+
|
79
|
+
# Allows RSpec to persist some state between runs in order to support
|
80
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
81
|
+
# you configure your source control system to ignore this file.
|
82
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
83
|
+
|
84
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
85
|
+
# recommended. For more details, see:
|
86
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
87
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
88
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
89
|
+
config.disable_monkey_patching!
|
90
|
+
|
91
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
92
|
+
# be too noisy due to issues in dependencies.
|
93
|
+
config.warnings = true
|
94
|
+
|
95
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
96
|
+
# file, and it's useful to allow more verbose output when running an
|
97
|
+
# individual spec file.
|
98
|
+
if config.files_to_run.one?
|
99
|
+
# Use the documentation formatter for detailed output,
|
100
|
+
# unless a formatter has already been configured
|
101
|
+
# (e.g. via a command-line flag).
|
102
|
+
config.default_formatter = 'doc'
|
103
|
+
end
|
104
|
+
|
105
|
+
# Print the 10 slowest examples and example groups at the
|
106
|
+
# end of the spec run, to help surface which specs are running
|
107
|
+
# particularly slow.
|
108
|
+
config.profile_examples = 10
|
109
|
+
|
110
|
+
# Run specs in random order to surface order dependencies. If you find an
|
111
|
+
# order dependency and want to debug it, you can fix the order by providing
|
112
|
+
# the seed, which is printed after each run.
|
113
|
+
# --seed 1234
|
114
|
+
config.order = :random
|
115
|
+
|
116
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
117
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
118
|
+
# test failures related to randomization by passing the same `--seed` value
|
119
|
+
# as the one that triggered the failure.
|
120
|
+
Kernel.srand config.seed
|
121
|
+
=end
|
122
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"gemName": "rustici_software_cloud_v2",
|
3
|
+
"module": "RusticiSoftwareCloudV2",
|
4
|
+
"additionalProperties": {
|
5
|
+
"excludeTests": true
|
6
|
+
},
|
7
|
+
"gemVersion": "1.0.0-beta",
|
8
|
+
"gemLicense": "",
|
9
|
+
"gemDescription": "SCORM Cloud API V2 Client",
|
10
|
+
"gemSummary": "A Ruby wrapper for the SCORM Cloud API V2"
|
11
|
+
}
|
metadata
ADDED
@@ -0,0 +1,526 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rustici_software_cloud_v2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0beta
|
5
|
+
prerelease: 5
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Swagger-Codegen
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2019-03-26 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: typhoeus
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.0'
|
22
|
+
- - ! '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.0.1
|
25
|
+
type: :runtime
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.0'
|
33
|
+
- - ! '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 1.0.1
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '2.1'
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.1.0
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.1'
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.1.0
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: rspec
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ~>
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '3.6'
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.6.0
|
69
|
+
type: :development
|
70
|
+
prerelease: false
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ~>
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '3.6'
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 3.6.0
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: vcr
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ~>
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '3.0'
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 3.0.1
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ~>
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '3.0'
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 3.0.1
|
102
|
+
- !ruby/object:Gem::Dependency
|
103
|
+
name: webmock
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.24'
|
110
|
+
- - ! '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 1.24.3
|
113
|
+
type: :development
|
114
|
+
prerelease: false
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ~>
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '1.24'
|
121
|
+
- - ! '>='
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 1.24.3
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: autotest
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
127
|
+
none: false
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '4.4'
|
132
|
+
- - ! '>='
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: 4.4.6
|
135
|
+
type: :development
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
139
|
+
requirements:
|
140
|
+
- - ~>
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '4.4'
|
143
|
+
- - ! '>='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 4.4.6
|
146
|
+
- !ruby/object:Gem::Dependency
|
147
|
+
name: autotest-rails-pure
|
148
|
+
requirement: !ruby/object:Gem::Requirement
|
149
|
+
none: false
|
150
|
+
requirements:
|
151
|
+
- - ~>
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '4.1'
|
154
|
+
- - ! '>='
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: 4.1.2
|
157
|
+
type: :development
|
158
|
+
prerelease: false
|
159
|
+
version_requirements: !ruby/object:Gem::Requirement
|
160
|
+
none: false
|
161
|
+
requirements:
|
162
|
+
- - ~>
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '4.1'
|
165
|
+
- - ! '>='
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: 4.1.2
|
168
|
+
- !ruby/object:Gem::Dependency
|
169
|
+
name: autotest-growl
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
171
|
+
none: false
|
172
|
+
requirements:
|
173
|
+
- - ~>
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0.2'
|
176
|
+
- - ! '>='
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: 0.2.16
|
179
|
+
type: :development
|
180
|
+
prerelease: false
|
181
|
+
version_requirements: !ruby/object:Gem::Requirement
|
182
|
+
none: false
|
183
|
+
requirements:
|
184
|
+
- - ~>
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0.2'
|
187
|
+
- - ! '>='
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 0.2.16
|
190
|
+
- !ruby/object:Gem::Dependency
|
191
|
+
name: autotest-fsevent
|
192
|
+
requirement: !ruby/object:Gem::Requirement
|
193
|
+
none: false
|
194
|
+
requirements:
|
195
|
+
- - ~>
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: '0.2'
|
198
|
+
- - ! '>='
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 0.2.12
|
201
|
+
type: :development
|
202
|
+
prerelease: false
|
203
|
+
version_requirements: !ruby/object:Gem::Requirement
|
204
|
+
none: false
|
205
|
+
requirements:
|
206
|
+
- - ~>
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0.2'
|
209
|
+
- - ! '>='
|
210
|
+
- !ruby/object:Gem::Version
|
211
|
+
version: 0.2.12
|
212
|
+
description: SCORM Cloud API V2 Client
|
213
|
+
email:
|
214
|
+
- ''
|
215
|
+
executables: []
|
216
|
+
extensions: []
|
217
|
+
extra_rdoc_files: []
|
218
|
+
files:
|
219
|
+
- Gemfile
|
220
|
+
- LICENSE
|
221
|
+
- README.md
|
222
|
+
- Rakefile
|
223
|
+
- docs/ActivityResultSchema.md
|
224
|
+
- docs/ApplicationListSchema.md
|
225
|
+
- docs/ApplicationManagementApi.md
|
226
|
+
- docs/ApplicationSchema.md
|
227
|
+
- docs/ApplicationToken.md
|
228
|
+
- docs/AuthenticationApi.md
|
229
|
+
- docs/CommentSchema.md
|
230
|
+
- docs/CompletionAmountSchema.md
|
231
|
+
- docs/CourseActivitySchema.md
|
232
|
+
- docs/CourseApi.md
|
233
|
+
- docs/CourseListNonPagedSchema.md
|
234
|
+
- docs/CourseListSchema.md
|
235
|
+
- docs/CourseReferenceSchema.md
|
236
|
+
- docs/CourseSchema.md
|
237
|
+
- docs/CourseTagsBatchSchema.md
|
238
|
+
- docs/CreateRegistrationSchema.md
|
239
|
+
- docs/CredentialCreatedSchema.md
|
240
|
+
- docs/CredentialListSchema.md
|
241
|
+
- docs/CredentialRequestSchema.md
|
242
|
+
- docs/CredentialSchema.md
|
243
|
+
- docs/ImportFetchRequestSchema.md
|
244
|
+
- docs/ImportJobResultSchema.md
|
245
|
+
- docs/ImportResultSchema.md
|
246
|
+
- docs/IntegerResultSchema.md
|
247
|
+
- docs/ItemValuePairSchema.md
|
248
|
+
- docs/LaunchHistoryListSchema.md
|
249
|
+
- docs/LaunchHistorySchema.md
|
250
|
+
- docs/LaunchLinkRequestSchema.md
|
251
|
+
- docs/LaunchLinkSchema.md
|
252
|
+
- docs/LearnerPreferenceSchema.md
|
253
|
+
- docs/LearnerSchema.md
|
254
|
+
- docs/LinkSchema.md
|
255
|
+
- docs/MessageSchema.md
|
256
|
+
- docs/MetadataSchema.md
|
257
|
+
- docs/ObjectiveSchema.md
|
258
|
+
- docs/PermissionsSchema.md
|
259
|
+
- docs/PingApi.md
|
260
|
+
- docs/PingSchema.md
|
261
|
+
- docs/PostBackSchema.md
|
262
|
+
- docs/RegistrationApi.md
|
263
|
+
- docs/RegistrationCompletion.md
|
264
|
+
- docs/RegistrationListSchema.md
|
265
|
+
- docs/RegistrationSchema.md
|
266
|
+
- docs/RegistrationSuccess.md
|
267
|
+
- docs/RegistrationTagsBatchSchema.md
|
268
|
+
- docs/ResponseError.md
|
269
|
+
- docs/RuntimeInteractionSchema.md
|
270
|
+
- docs/RuntimeObjectiveSchema.md
|
271
|
+
- docs/RuntimeSchema.md
|
272
|
+
- docs/ScoreSchema.md
|
273
|
+
- docs/SettingItem.md
|
274
|
+
- docs/SettingListSchema.md
|
275
|
+
- docs/SettingMetadata.md
|
276
|
+
- docs/SettingMetadataValidValues.md
|
277
|
+
- docs/SettingValidValue.md
|
278
|
+
- docs/SettingsIndividualSchema.md
|
279
|
+
- docs/SettingsPostSchema.md
|
280
|
+
- docs/SharedDataEntrySchema.md
|
281
|
+
- docs/StaticPropertiesSchema.md
|
282
|
+
- docs/StringResultSchema.md
|
283
|
+
- docs/TagListSchema.md
|
284
|
+
- docs/TagPostSchema.md
|
285
|
+
- docs/TitleSchema.md
|
286
|
+
- docs/TokenRequestSchema.md
|
287
|
+
- docs/XapiAccount.md
|
288
|
+
- docs/XapiActivity.md
|
289
|
+
- docs/XapiActivityDefinition.md
|
290
|
+
- docs/XapiAgentGroup.md
|
291
|
+
- docs/XapiAttachment.md
|
292
|
+
- docs/XapiContext.md
|
293
|
+
- docs/XapiContextActivity.md
|
294
|
+
- docs/XapiInteractionComponent.md
|
295
|
+
- docs/XapiResult.md
|
296
|
+
- docs/XapiScore.md
|
297
|
+
- docs/XapiStatement.md
|
298
|
+
- docs/XapiStatementReference.md
|
299
|
+
- docs/XapiStatementResult.md
|
300
|
+
- docs/XapiVerb.md
|
301
|
+
- git_push.sh
|
302
|
+
- lib/rustici_software_cloud_v2.rb
|
303
|
+
- lib/rustici_software_cloud_v2/api/application_management_api.rb
|
304
|
+
- lib/rustici_software_cloud_v2/api/authentication_api.rb
|
305
|
+
- lib/rustici_software_cloud_v2/api/course_api.rb
|
306
|
+
- lib/rustici_software_cloud_v2/api/ping_api.rb
|
307
|
+
- lib/rustici_software_cloud_v2/api/registration_api.rb
|
308
|
+
- lib/rustici_software_cloud_v2/api_client.rb
|
309
|
+
- lib/rustici_software_cloud_v2/api_error.rb
|
310
|
+
- lib/rustici_software_cloud_v2/configuration.rb
|
311
|
+
- lib/rustici_software_cloud_v2/models/activity_result_schema.rb
|
312
|
+
- lib/rustici_software_cloud_v2/models/application_list_schema.rb
|
313
|
+
- lib/rustici_software_cloud_v2/models/application_schema.rb
|
314
|
+
- lib/rustici_software_cloud_v2/models/application_token.rb
|
315
|
+
- lib/rustici_software_cloud_v2/models/comment_schema.rb
|
316
|
+
- lib/rustici_software_cloud_v2/models/completion_amount_schema.rb
|
317
|
+
- lib/rustici_software_cloud_v2/models/course_activity_schema.rb
|
318
|
+
- lib/rustici_software_cloud_v2/models/course_list_non_paged_schema.rb
|
319
|
+
- lib/rustici_software_cloud_v2/models/course_list_schema.rb
|
320
|
+
- lib/rustici_software_cloud_v2/models/course_reference_schema.rb
|
321
|
+
- lib/rustici_software_cloud_v2/models/course_schema.rb
|
322
|
+
- lib/rustici_software_cloud_v2/models/course_tags_batch_schema.rb
|
323
|
+
- lib/rustici_software_cloud_v2/models/create_registration_schema.rb
|
324
|
+
- lib/rustici_software_cloud_v2/models/credential_created_schema.rb
|
325
|
+
- lib/rustici_software_cloud_v2/models/credential_list_schema.rb
|
326
|
+
- lib/rustici_software_cloud_v2/models/credential_request_schema.rb
|
327
|
+
- lib/rustici_software_cloud_v2/models/credential_schema.rb
|
328
|
+
- lib/rustici_software_cloud_v2/models/import_fetch_request_schema.rb
|
329
|
+
- lib/rustici_software_cloud_v2/models/import_job_result_schema.rb
|
330
|
+
- lib/rustici_software_cloud_v2/models/import_result_schema.rb
|
331
|
+
- lib/rustici_software_cloud_v2/models/integer_result_schema.rb
|
332
|
+
- lib/rustici_software_cloud_v2/models/item_value_pair_schema.rb
|
333
|
+
- lib/rustici_software_cloud_v2/models/launch_history_list_schema.rb
|
334
|
+
- lib/rustici_software_cloud_v2/models/launch_history_schema.rb
|
335
|
+
- lib/rustici_software_cloud_v2/models/launch_link_request_schema.rb
|
336
|
+
- lib/rustici_software_cloud_v2/models/launch_link_schema.rb
|
337
|
+
- lib/rustici_software_cloud_v2/models/learner_preference_schema.rb
|
338
|
+
- lib/rustici_software_cloud_v2/models/learner_schema.rb
|
339
|
+
- lib/rustici_software_cloud_v2/models/link_schema.rb
|
340
|
+
- lib/rustici_software_cloud_v2/models/message_schema.rb
|
341
|
+
- lib/rustici_software_cloud_v2/models/metadata_schema.rb
|
342
|
+
- lib/rustici_software_cloud_v2/models/objective_schema.rb
|
343
|
+
- lib/rustici_software_cloud_v2/models/permissions_schema.rb
|
344
|
+
- lib/rustici_software_cloud_v2/models/ping_schema.rb
|
345
|
+
- lib/rustici_software_cloud_v2/models/post_back_schema.rb
|
346
|
+
- lib/rustici_software_cloud_v2/models/registration_completion.rb
|
347
|
+
- lib/rustici_software_cloud_v2/models/registration_list_schema.rb
|
348
|
+
- lib/rustici_software_cloud_v2/models/registration_schema.rb
|
349
|
+
- lib/rustici_software_cloud_v2/models/registration_success.rb
|
350
|
+
- lib/rustici_software_cloud_v2/models/registration_tags_batch_schema.rb
|
351
|
+
- lib/rustici_software_cloud_v2/models/response_error.rb
|
352
|
+
- lib/rustici_software_cloud_v2/models/runtime_interaction_schema.rb
|
353
|
+
- lib/rustici_software_cloud_v2/models/runtime_objective_schema.rb
|
354
|
+
- lib/rustici_software_cloud_v2/models/runtime_schema.rb
|
355
|
+
- lib/rustici_software_cloud_v2/models/score_schema.rb
|
356
|
+
- lib/rustici_software_cloud_v2/models/setting_item.rb
|
357
|
+
- lib/rustici_software_cloud_v2/models/setting_list_schema.rb
|
358
|
+
- lib/rustici_software_cloud_v2/models/setting_metadata.rb
|
359
|
+
- lib/rustici_software_cloud_v2/models/setting_metadata_valid_values.rb
|
360
|
+
- lib/rustici_software_cloud_v2/models/setting_valid_value.rb
|
361
|
+
- lib/rustici_software_cloud_v2/models/settings_individual_schema.rb
|
362
|
+
- lib/rustici_software_cloud_v2/models/settings_post_schema.rb
|
363
|
+
- lib/rustici_software_cloud_v2/models/shared_data_entry_schema.rb
|
364
|
+
- lib/rustici_software_cloud_v2/models/static_properties_schema.rb
|
365
|
+
- lib/rustici_software_cloud_v2/models/string_result_schema.rb
|
366
|
+
- lib/rustici_software_cloud_v2/models/tag_list_schema.rb
|
367
|
+
- lib/rustici_software_cloud_v2/models/tag_post_schema.rb
|
368
|
+
- lib/rustici_software_cloud_v2/models/title_schema.rb
|
369
|
+
- lib/rustici_software_cloud_v2/models/token_request_schema.rb
|
370
|
+
- lib/rustici_software_cloud_v2/models/xapi_account.rb
|
371
|
+
- lib/rustici_software_cloud_v2/models/xapi_activity.rb
|
372
|
+
- lib/rustici_software_cloud_v2/models/xapi_activity_definition.rb
|
373
|
+
- lib/rustici_software_cloud_v2/models/xapi_agent_group.rb
|
374
|
+
- lib/rustici_software_cloud_v2/models/xapi_attachment.rb
|
375
|
+
- lib/rustici_software_cloud_v2/models/xapi_context.rb
|
376
|
+
- lib/rustici_software_cloud_v2/models/xapi_context_activity.rb
|
377
|
+
- lib/rustici_software_cloud_v2/models/xapi_interaction_component.rb
|
378
|
+
- lib/rustici_software_cloud_v2/models/xapi_result.rb
|
379
|
+
- lib/rustici_software_cloud_v2/models/xapi_score.rb
|
380
|
+
- lib/rustici_software_cloud_v2/models/xapi_statement.rb
|
381
|
+
- lib/rustici_software_cloud_v2/models/xapi_statement_reference.rb
|
382
|
+
- lib/rustici_software_cloud_v2/models/xapi_statement_result.rb
|
383
|
+
- lib/rustici_software_cloud_v2/models/xapi_verb.rb
|
384
|
+
- lib/rustici_software_cloud_v2/version.rb
|
385
|
+
- rustici_software_cloud_v2.gemspec
|
386
|
+
- spec/api_client_spec.rb
|
387
|
+
- spec/configuration_spec.rb
|
388
|
+
- spec/models/activity_result_schema_spec.rb
|
389
|
+
- spec/models/application_list_schema_spec.rb
|
390
|
+
- spec/models/application_schema_spec.rb
|
391
|
+
- spec/models/application_token_spec.rb
|
392
|
+
- spec/models/comment_schema_spec.rb
|
393
|
+
- spec/models/completion_amount_schema_spec.rb
|
394
|
+
- spec/models/course_activity_schema_spec.rb
|
395
|
+
- spec/models/course_list_non_paged_schema_spec.rb
|
396
|
+
- spec/models/course_list_schema_spec.rb
|
397
|
+
- spec/models/course_reference_schema_spec.rb
|
398
|
+
- spec/models/course_schema_spec.rb
|
399
|
+
- spec/models/create_registration_schema_spec.rb
|
400
|
+
- spec/models/credential_created_schema_spec.rb
|
401
|
+
- spec/models/credential_list_schema_spec.rb
|
402
|
+
- spec/models/credential_request_schema_spec.rb
|
403
|
+
- spec/models/credential_schema_spec.rb
|
404
|
+
- spec/models/import_fetch_request_schema_spec.rb
|
405
|
+
- spec/models/import_job_result_schema_spec.rb
|
406
|
+
- spec/models/import_result_schema_spec.rb
|
407
|
+
- spec/models/integer_result_schema_spec.rb
|
408
|
+
- spec/models/item_value_pair_schema_spec.rb
|
409
|
+
- spec/models/launch_history_list_schema_spec.rb
|
410
|
+
- spec/models/launch_history_schema_spec.rb
|
411
|
+
- spec/models/launch_link_request_schema_spec.rb
|
412
|
+
- spec/models/launch_link_schema_spec.rb
|
413
|
+
- spec/models/learner_preference_schema_spec.rb
|
414
|
+
- spec/models/learner_schema_spec.rb
|
415
|
+
- spec/models/link_schema_spec.rb
|
416
|
+
- spec/models/message_schema_spec.rb
|
417
|
+
- spec/models/metadata_schema_spec.rb
|
418
|
+
- spec/models/objective_schema_spec.rb
|
419
|
+
- spec/models/permissions_schema_spec.rb
|
420
|
+
- spec/models/ping_schema_spec.rb
|
421
|
+
- spec/models/post_back_schema_spec.rb
|
422
|
+
- spec/models/registration_completion_spec.rb
|
423
|
+
- spec/models/registration_list_schema_spec.rb
|
424
|
+
- spec/models/registration_schema_spec.rb
|
425
|
+
- spec/models/registration_success_spec.rb
|
426
|
+
- spec/models/response_error_spec.rb
|
427
|
+
- spec/models/runtime_interaction_schema_spec.rb
|
428
|
+
- spec/models/runtime_objective_schema_spec.rb
|
429
|
+
- spec/models/runtime_schema_spec.rb
|
430
|
+
- spec/models/score_schema_spec.rb
|
431
|
+
- spec/models/setting_item_spec.rb
|
432
|
+
- spec/models/setting_list_schema_spec.rb
|
433
|
+
- spec/models/setting_metadata_spec.rb
|
434
|
+
- spec/models/setting_metadata_valid_values_spec.rb
|
435
|
+
- spec/models/settings_individual_schema_spec.rb
|
436
|
+
- spec/models/settings_post_schema_spec.rb
|
437
|
+
- spec/models/shared_data_entry_schema_spec.rb
|
438
|
+
- spec/models/static_properties_schema_spec.rb
|
439
|
+
- spec/models/string_result_schema_spec.rb
|
440
|
+
- spec/models/title_schema_spec.rb
|
441
|
+
- spec/models/token_request_schema_spec.rb
|
442
|
+
- spec/spec_helper.rb
|
443
|
+
- swagger-codegen.config
|
444
|
+
homepage: https://github.com/swagger-api/swagger-codegen
|
445
|
+
licenses:
|
446
|
+
- ''
|
447
|
+
post_install_message:
|
448
|
+
rdoc_options: []
|
449
|
+
require_paths:
|
450
|
+
- lib
|
451
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
452
|
+
none: false
|
453
|
+
requirements:
|
454
|
+
- - ! '>='
|
455
|
+
- !ruby/object:Gem::Version
|
456
|
+
version: '1.9'
|
457
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
458
|
+
none: false
|
459
|
+
requirements:
|
460
|
+
- - ! '>'
|
461
|
+
- !ruby/object:Gem::Version
|
462
|
+
version: 1.3.1
|
463
|
+
requirements: []
|
464
|
+
rubyforge_project:
|
465
|
+
rubygems_version: 1.8.23
|
466
|
+
signing_key:
|
467
|
+
specification_version: 3
|
468
|
+
summary: A Ruby wrapper for the SCORM Cloud API V2
|
469
|
+
test_files:
|
470
|
+
- spec/api_client_spec.rb
|
471
|
+
- spec/configuration_spec.rb
|
472
|
+
- spec/models/import_job_result_schema_spec.rb
|
473
|
+
- spec/models/launch_history_list_schema_spec.rb
|
474
|
+
- spec/models/registration_success_spec.rb
|
475
|
+
- spec/models/application_schema_spec.rb
|
476
|
+
- spec/models/launch_link_schema_spec.rb
|
477
|
+
- spec/models/message_schema_spec.rb
|
478
|
+
- spec/models/learner_preference_schema_spec.rb
|
479
|
+
- spec/models/import_fetch_request_schema_spec.rb
|
480
|
+
- spec/models/launch_history_schema_spec.rb
|
481
|
+
- spec/models/token_request_schema_spec.rb
|
482
|
+
- spec/models/learner_schema_spec.rb
|
483
|
+
- spec/models/integer_result_schema_spec.rb
|
484
|
+
- spec/models/course_list_schema_spec.rb
|
485
|
+
- spec/models/settings_post_schema_spec.rb
|
486
|
+
- spec/models/credential_request_schema_spec.rb
|
487
|
+
- spec/models/title_schema_spec.rb
|
488
|
+
- spec/models/registration_completion_spec.rb
|
489
|
+
- spec/models/course_schema_spec.rb
|
490
|
+
- spec/models/response_error_spec.rb
|
491
|
+
- spec/models/setting_list_schema_spec.rb
|
492
|
+
- spec/models/runtime_objective_schema_spec.rb
|
493
|
+
- spec/models/comment_schema_spec.rb
|
494
|
+
- spec/models/completion_amount_schema_spec.rb
|
495
|
+
- spec/models/course_list_non_paged_schema_spec.rb
|
496
|
+
- spec/models/course_reference_schema_spec.rb
|
497
|
+
- spec/models/string_result_schema_spec.rb
|
498
|
+
- spec/models/credential_created_schema_spec.rb
|
499
|
+
- spec/models/link_schema_spec.rb
|
500
|
+
- spec/models/setting_item_spec.rb
|
501
|
+
- spec/models/permissions_schema_spec.rb
|
502
|
+
- spec/models/activity_result_schema_spec.rb
|
503
|
+
- spec/models/shared_data_entry_schema_spec.rb
|
504
|
+
- spec/models/application_token_spec.rb
|
505
|
+
- spec/models/registration_list_schema_spec.rb
|
506
|
+
- spec/models/ping_schema_spec.rb
|
507
|
+
- spec/models/metadata_schema_spec.rb
|
508
|
+
- spec/models/objective_schema_spec.rb
|
509
|
+
- spec/models/runtime_schema_spec.rb
|
510
|
+
- spec/models/setting_metadata_spec.rb
|
511
|
+
- spec/models/static_properties_schema_spec.rb
|
512
|
+
- spec/models/import_result_schema_spec.rb
|
513
|
+
- spec/models/application_list_schema_spec.rb
|
514
|
+
- spec/models/setting_metadata_valid_values_spec.rb
|
515
|
+
- spec/models/item_value_pair_schema_spec.rb
|
516
|
+
- spec/models/credential_schema_spec.rb
|
517
|
+
- spec/models/registration_schema_spec.rb
|
518
|
+
- spec/models/post_back_schema_spec.rb
|
519
|
+
- spec/models/launch_link_request_schema_spec.rb
|
520
|
+
- spec/models/settings_individual_schema_spec.rb
|
521
|
+
- spec/models/score_schema_spec.rb
|
522
|
+
- spec/models/course_activity_schema_spec.rb
|
523
|
+
- spec/models/runtime_interaction_schema_spec.rb
|
524
|
+
- spec/models/credential_list_schema_spec.rb
|
525
|
+
- spec/models/create_registration_schema_spec.rb
|
526
|
+
- spec/spec_helper.rb
|