bt_test 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/README.md +187 -0
- data/Rakefile +10 -0
- data/bt_test.gemspec +38 -0
- data/docs/CreateGoalRequest.md +18 -0
- data/docs/CreateProjectRequest.md +26 -0
- data/docs/CreateProjectsTagRequest.md +18 -0
- data/docs/CreateScaffoldingAbsolutelyAbstractCreativeConceptRequest.md +20 -0
- data/docs/CreateTeamRequest.md +20 -0
- data/docs/CreateWebhooksOutgoingEndpointRequest.md +22 -0
- data/docs/Goal.md +18 -0
- data/docs/GoalData.md +24 -0
- data/docs/GoalDataAttributes.md +24 -0
- data/docs/GoalDataRelationships.md +18 -0
- data/docs/Me.md +18 -0
- data/docs/MeData.md +24 -0
- data/docs/MeDataAttributes.md +38 -0
- data/docs/MeDataRelationships.md +20 -0
- data/docs/PlatformApi.md +2834 -0
- data/docs/Project.md +18 -0
- data/docs/ProjectData.md +24 -0
- data/docs/ProjectDataAttributes.md +24 -0
- data/docs/ProjectDataRelationships.md +26 -0
- data/docs/ProjectDataRelationshipsTags.md +18 -0
- data/docs/ProjectsTag.md +18 -0
- data/docs/ProjectsTagData.md +24 -0
- data/docs/ProjectsTagDataAttributes.md +22 -0
- data/docs/ProjectsTagDataRelationships.md +20 -0
- data/docs/ProjectsTagDataRelationshipsTeam.md +18 -0
- data/docs/ProjectsTagDataRelationshipsTeamData.md +20 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConcept.md +18 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptData.md +24 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataAttributes.md +28 -0
- data/docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataRelationships.md +20 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThing.md +18 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingData.md +24 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingDataAttributes.md +46 -0
- data/docs/ScaffoldingCompletelyConcreteTangibleThingDataRelationships.md +18 -0
- data/docs/Team.md +18 -0
- data/docs/TeamData.md +24 -0
- data/docs/TeamDataAttributes.md +28 -0
- data/docs/TeamDataRelationships.md +18 -0
- data/docs/UpdateScaffoldingCompletelyConcreteTangibleThingRequest.md +46 -0
- data/docs/WebhooksOutgoingDelivery.md +18 -0
- data/docs/WebhooksOutgoingDeliveryAttempt.md +18 -0
- data/docs/WebhooksOutgoingDeliveryAttemptData.md +24 -0
- data/docs/WebhooksOutgoingDeliveryAttemptDataAttributes.md +34 -0
- data/docs/WebhooksOutgoingDeliveryAttemptDataRelationships.md +18 -0
- data/docs/WebhooksOutgoingDeliveryData.md +24 -0
- data/docs/WebhooksOutgoingDeliveryDataAttributes.md +30 -0
- data/docs/WebhooksOutgoingDeliveryDataRelationships.md +18 -0
- data/docs/WebhooksOutgoingEndpoint.md +18 -0
- data/docs/WebhooksOutgoingEndpointData.md +24 -0
- data/docs/WebhooksOutgoingEndpointDataAttributes.md +28 -0
- data/docs/WebhooksOutgoingEndpointDataRelationships.md +18 -0
- data/git_push.sh +57 -0
- data/lib/bt_test/api/platform_api.rb +2523 -0
- data/lib/bt_test/api_client.rb +392 -0
- data/lib/bt_test/api_error.rb +57 -0
- data/lib/bt_test/configuration.rb +280 -0
- data/lib/bt_test/models/create_goal_request.rb +220 -0
- data/lib/bt_test/models/create_project_request.rb +262 -0
- data/lib/bt_test/models/create_projects_tag_request.rb +220 -0
- data/lib/bt_test/models/create_scaffolding_absolutely_abstract_creative_concept_request.rb +230 -0
- data/lib/bt_test/models/create_team_request.rb +230 -0
- data/lib/bt_test/models/create_webhooks_outgoing_endpoint_request.rb +242 -0
- data/lib/bt_test/models/goal.rb +220 -0
- data/lib/bt_test/models/goal_data.rb +246 -0
- data/lib/bt_test/models/goal_data_attributes.rb +246 -0
- data/lib/bt_test/models/goal_data_relationships.rb +219 -0
- data/lib/bt_test/models/me.rb +220 -0
- data/lib/bt_test/models/me_data.rb +246 -0
- data/lib/bt_test/models/me_data_attributes.rb +309 -0
- data/lib/bt_test/models/me_data_relationships.rb +228 -0
- data/lib/bt_test/models/project.rb +220 -0
- data/lib/bt_test/models/project_data.rb +246 -0
- data/lib/bt_test/models/project_data_attributes.rb +246 -0
- data/lib/bt_test/models/project_data_relationships.rb +255 -0
- data/lib/bt_test/models/project_data_relationships_tags.rb +221 -0
- data/lib/bt_test/models/projects_tag.rb +220 -0
- data/lib/bt_test/models/projects_tag_data.rb +246 -0
- data/lib/bt_test/models/projects_tag_data_attributes.rb +237 -0
- data/lib/bt_test/models/projects_tag_data_relationships.rb +228 -0
- data/lib/bt_test/models/projects_tag_data_relationships_team.rb +219 -0
- data/lib/bt_test/models/projects_tag_data_relationships_team_data.rb +228 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept.rb +220 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data.rb +246 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_attributes.rb +264 -0
- data/lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_relationships.rb +228 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing.rb +220 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data.rb +246 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_attributes.rb +345 -0
- data/lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_relationships.rb +219 -0
- data/lib/bt_test/models/team.rb +220 -0
- data/lib/bt_test/models/team_data.rb +246 -0
- data/lib/bt_test/models/team_data_attributes.rb +264 -0
- data/lib/bt_test/models/team_data_relationships.rb +219 -0
- data/lib/bt_test/models/update_scaffolding_completely_concrete_tangible_thing_request.rb +366 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_attributes.rb +291 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_relationships.rb +219 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data_attributes.rb +273 -0
- data/lib/bt_test/models/webhooks_outgoing_delivery_data_relationships.rb +219 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint.rb +220 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data.rb +246 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data_attributes.rb +264 -0
- data/lib/bt_test/models/webhooks_outgoing_endpoint_data_relationships.rb +219 -0
- data/lib/bt_test/version.rb +15 -0
- data/lib/bt_test.rb +90 -0
- data/spec/api/platform_api_spec.rb +493 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/create_goal_request_spec.rb +34 -0
- data/spec/models/create_project_request_spec.rb +58 -0
- data/spec/models/create_projects_tag_request_spec.rb +34 -0
- data/spec/models/create_scaffolding_absolutely_abstract_creative_concept_request_spec.rb +40 -0
- data/spec/models/create_team_request_spec.rb +40 -0
- data/spec/models/create_webhooks_outgoing_endpoint_request_spec.rb +46 -0
- data/spec/models/goal_data_attributes_spec.rb +52 -0
- data/spec/models/goal_data_relationships_spec.rb +34 -0
- data/spec/models/goal_data_spec.rb +52 -0
- data/spec/models/goal_spec.rb +34 -0
- data/spec/models/me_data_attributes_spec.rb +94 -0
- data/spec/models/me_data_relationships_spec.rb +40 -0
- data/spec/models/me_data_spec.rb +52 -0
- data/spec/models/me_spec.rb +34 -0
- data/spec/models/project_data_attributes_spec.rb +52 -0
- data/spec/models/project_data_relationships_spec.rb +58 -0
- data/spec/models/project_data_relationships_tags_spec.rb +34 -0
- data/spec/models/project_data_spec.rb +52 -0
- data/spec/models/project_spec.rb +34 -0
- data/spec/models/projects_tag_data_attributes_spec.rb +46 -0
- data/spec/models/projects_tag_data_relationships_spec.rb +40 -0
- data/spec/models/projects_tag_data_relationships_team_data_spec.rb +40 -0
- data/spec/models/projects_tag_data_relationships_team_spec.rb +34 -0
- data/spec/models/projects_tag_data_spec.rb +52 -0
- data/spec/models/projects_tag_spec.rb +34 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_attributes_spec.rb +64 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_relationships_spec.rb +40 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_data_spec.rb +52 -0
- data/spec/models/scaffolding_absolutely_abstract_creative_concept_spec.rb +34 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_attributes_spec.rb +118 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_relationships_spec.rb +34 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_data_spec.rb +52 -0
- data/spec/models/scaffolding_completely_concrete_tangible_thing_spec.rb +34 -0
- data/spec/models/team_data_attributes_spec.rb +64 -0
- data/spec/models/team_data_relationships_spec.rb +34 -0
- data/spec/models/team_data_spec.rb +52 -0
- data/spec/models/team_spec.rb +34 -0
- data/spec/models/update_scaffolding_completely_concrete_tangible_thing_request_spec.rb +118 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_attributes_spec.rb +82 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_delivery_attempt_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_data_attributes_spec.rb +70 -0
- data/spec/models/webhooks_outgoing_delivery_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_delivery_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_delivery_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_endpoint_data_attributes_spec.rb +64 -0
- data/spec/models/webhooks_outgoing_endpoint_data_relationships_spec.rb +34 -0
- data/spec/models/webhooks_outgoing_endpoint_data_spec.rb +52 -0
- data/spec/models/webhooks_outgoing_endpoint_spec.rb +34 -0
- data/spec/spec_helper.rb +111 -0
- metadata +303 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
=begin
|
2
|
+
#BT Test
|
3
|
+
|
4
|
+
#You can update this description in `config/locales/en/application.en.yml`.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BtTest::WebhooksOutgoingEndpointData
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BtTest::WebhooksOutgoingEndpointData do
|
21
|
+
let(:instance) { BtTest::WebhooksOutgoingEndpointData.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WebhooksOutgoingEndpointData' do
|
24
|
+
it 'should create an instance of WebhooksOutgoingEndpointData' do
|
25
|
+
expect(instance).to be_instance_of(BtTest::WebhooksOutgoingEndpointData)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "id"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "type"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "attributes"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "relationships"' 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
|
@@ -0,0 +1,34 @@
|
|
1
|
+
=begin
|
2
|
+
#BT Test
|
3
|
+
|
4
|
+
#You can update this description in `config/locales/en/application.en.yml`.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BtTest::WebhooksOutgoingEndpoint
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BtTest::WebhooksOutgoingEndpoint do
|
21
|
+
let(:instance) { BtTest::WebhooksOutgoingEndpoint.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WebhooksOutgoingEndpoint' do
|
24
|
+
it 'should create an instance of WebhooksOutgoingEndpoint' do
|
25
|
+
expect(instance).to be_instance_of(BtTest::WebhooksOutgoingEndpoint)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "data"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
=begin
|
2
|
+
#BT Test
|
3
|
+
|
4
|
+
#You can update this description in `config/locales/en/application.en.yml`.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'bt_test'
|
15
|
+
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
20
|
+
# files.
|
21
|
+
#
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
28
|
+
# it.
|
29
|
+
#
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
31
|
+
# users commonly want.
|
32
|
+
#
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
34
|
+
RSpec.configure do |config|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
37
|
+
# assertions if you prefer.
|
38
|
+
config.expect_with :rspec do |expectations|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
41
|
+
# defined using `chain`, e.g.:
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
44
|
+
# ...rather than:
|
45
|
+
# # => "be bigger than 2"
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
47
|
+
end
|
48
|
+
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
51
|
+
config.mock_with :rspec do |mocks|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
53
|
+
# a real object. This is generally recommended, and will default to
|
54
|
+
# `true` in RSpec 4.
|
55
|
+
mocks.verify_partial_doubles = true
|
56
|
+
end
|
57
|
+
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
60
|
+
=begin
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
64
|
+
# get run.
|
65
|
+
config.filter_run :focus
|
66
|
+
config.run_all_when_everything_filtered = true
|
67
|
+
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
70
|
+
# you configure your source control system to ignore this file.
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
72
|
+
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
74
|
+
# recommended. For more details, see:
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
78
|
+
config.disable_monkey_patching!
|
79
|
+
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
81
|
+
# be too noisy due to issues in dependencies.
|
82
|
+
config.warnings = true
|
83
|
+
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
86
|
+
# individual spec file.
|
87
|
+
if config.files_to_run.one?
|
88
|
+
# Use the documentation formatter for detailed output,
|
89
|
+
# unless a formatter has already been configured
|
90
|
+
# (e.g. via a command-line flag).
|
91
|
+
config.default_formatter = 'doc'
|
92
|
+
end
|
93
|
+
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
95
|
+
# end of the spec run, to help surface which specs are running
|
96
|
+
# particularly slow.
|
97
|
+
config.profile_examples = 10
|
98
|
+
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
101
|
+
# the seed, which is printed after each run.
|
102
|
+
# --seed 1234
|
103
|
+
config.order = :random
|
104
|
+
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
108
|
+
# as the one that triggered the failure.
|
109
|
+
Kernel.srand config.seed
|
110
|
+
=end
|
111
|
+
end
|
metadata
ADDED
@@ -0,0 +1,303 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bt_test
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- OpenAPI-Generator
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-06-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: typhoeus
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rspec
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '3.6'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 3.6.0
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '3.6'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.6.0
|
53
|
+
description: You can update this description in `config/locales/en/application.en.yml`.
|
54
|
+
email:
|
55
|
+
- ''
|
56
|
+
executables: []
|
57
|
+
extensions: []
|
58
|
+
extra_rdoc_files: []
|
59
|
+
files:
|
60
|
+
- Gemfile
|
61
|
+
- README.md
|
62
|
+
- Rakefile
|
63
|
+
- bt_test.gemspec
|
64
|
+
- docs/CreateGoalRequest.md
|
65
|
+
- docs/CreateProjectRequest.md
|
66
|
+
- docs/CreateProjectsTagRequest.md
|
67
|
+
- docs/CreateScaffoldingAbsolutelyAbstractCreativeConceptRequest.md
|
68
|
+
- docs/CreateTeamRequest.md
|
69
|
+
- docs/CreateWebhooksOutgoingEndpointRequest.md
|
70
|
+
- docs/Goal.md
|
71
|
+
- docs/GoalData.md
|
72
|
+
- docs/GoalDataAttributes.md
|
73
|
+
- docs/GoalDataRelationships.md
|
74
|
+
- docs/Me.md
|
75
|
+
- docs/MeData.md
|
76
|
+
- docs/MeDataAttributes.md
|
77
|
+
- docs/MeDataRelationships.md
|
78
|
+
- docs/PlatformApi.md
|
79
|
+
- docs/Project.md
|
80
|
+
- docs/ProjectData.md
|
81
|
+
- docs/ProjectDataAttributes.md
|
82
|
+
- docs/ProjectDataRelationships.md
|
83
|
+
- docs/ProjectDataRelationshipsTags.md
|
84
|
+
- docs/ProjectsTag.md
|
85
|
+
- docs/ProjectsTagData.md
|
86
|
+
- docs/ProjectsTagDataAttributes.md
|
87
|
+
- docs/ProjectsTagDataRelationships.md
|
88
|
+
- docs/ProjectsTagDataRelationshipsTeam.md
|
89
|
+
- docs/ProjectsTagDataRelationshipsTeamData.md
|
90
|
+
- docs/ScaffoldingAbsolutelyAbstractCreativeConcept.md
|
91
|
+
- docs/ScaffoldingAbsolutelyAbstractCreativeConceptData.md
|
92
|
+
- docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataAttributes.md
|
93
|
+
- docs/ScaffoldingAbsolutelyAbstractCreativeConceptDataRelationships.md
|
94
|
+
- docs/ScaffoldingCompletelyConcreteTangibleThing.md
|
95
|
+
- docs/ScaffoldingCompletelyConcreteTangibleThingData.md
|
96
|
+
- docs/ScaffoldingCompletelyConcreteTangibleThingDataAttributes.md
|
97
|
+
- docs/ScaffoldingCompletelyConcreteTangibleThingDataRelationships.md
|
98
|
+
- docs/Team.md
|
99
|
+
- docs/TeamData.md
|
100
|
+
- docs/TeamDataAttributes.md
|
101
|
+
- docs/TeamDataRelationships.md
|
102
|
+
- docs/UpdateScaffoldingCompletelyConcreteTangibleThingRequest.md
|
103
|
+
- docs/WebhooksOutgoingDelivery.md
|
104
|
+
- docs/WebhooksOutgoingDeliveryAttempt.md
|
105
|
+
- docs/WebhooksOutgoingDeliveryAttemptData.md
|
106
|
+
- docs/WebhooksOutgoingDeliveryAttemptDataAttributes.md
|
107
|
+
- docs/WebhooksOutgoingDeliveryAttemptDataRelationships.md
|
108
|
+
- docs/WebhooksOutgoingDeliveryData.md
|
109
|
+
- docs/WebhooksOutgoingDeliveryDataAttributes.md
|
110
|
+
- docs/WebhooksOutgoingDeliveryDataRelationships.md
|
111
|
+
- docs/WebhooksOutgoingEndpoint.md
|
112
|
+
- docs/WebhooksOutgoingEndpointData.md
|
113
|
+
- docs/WebhooksOutgoingEndpointDataAttributes.md
|
114
|
+
- docs/WebhooksOutgoingEndpointDataRelationships.md
|
115
|
+
- git_push.sh
|
116
|
+
- lib/bt_test.rb
|
117
|
+
- lib/bt_test/api/platform_api.rb
|
118
|
+
- lib/bt_test/api_client.rb
|
119
|
+
- lib/bt_test/api_error.rb
|
120
|
+
- lib/bt_test/configuration.rb
|
121
|
+
- lib/bt_test/models/create_goal_request.rb
|
122
|
+
- lib/bt_test/models/create_project_request.rb
|
123
|
+
- lib/bt_test/models/create_projects_tag_request.rb
|
124
|
+
- lib/bt_test/models/create_scaffolding_absolutely_abstract_creative_concept_request.rb
|
125
|
+
- lib/bt_test/models/create_team_request.rb
|
126
|
+
- lib/bt_test/models/create_webhooks_outgoing_endpoint_request.rb
|
127
|
+
- lib/bt_test/models/goal.rb
|
128
|
+
- lib/bt_test/models/goal_data.rb
|
129
|
+
- lib/bt_test/models/goal_data_attributes.rb
|
130
|
+
- lib/bt_test/models/goal_data_relationships.rb
|
131
|
+
- lib/bt_test/models/me.rb
|
132
|
+
- lib/bt_test/models/me_data.rb
|
133
|
+
- lib/bt_test/models/me_data_attributes.rb
|
134
|
+
- lib/bt_test/models/me_data_relationships.rb
|
135
|
+
- lib/bt_test/models/project.rb
|
136
|
+
- lib/bt_test/models/project_data.rb
|
137
|
+
- lib/bt_test/models/project_data_attributes.rb
|
138
|
+
- lib/bt_test/models/project_data_relationships.rb
|
139
|
+
- lib/bt_test/models/project_data_relationships_tags.rb
|
140
|
+
- lib/bt_test/models/projects_tag.rb
|
141
|
+
- lib/bt_test/models/projects_tag_data.rb
|
142
|
+
- lib/bt_test/models/projects_tag_data_attributes.rb
|
143
|
+
- lib/bt_test/models/projects_tag_data_relationships.rb
|
144
|
+
- lib/bt_test/models/projects_tag_data_relationships_team.rb
|
145
|
+
- lib/bt_test/models/projects_tag_data_relationships_team_data.rb
|
146
|
+
- lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept.rb
|
147
|
+
- lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data.rb
|
148
|
+
- lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_attributes.rb
|
149
|
+
- lib/bt_test/models/scaffolding_absolutely_abstract_creative_concept_data_relationships.rb
|
150
|
+
- lib/bt_test/models/scaffolding_completely_concrete_tangible_thing.rb
|
151
|
+
- lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data.rb
|
152
|
+
- lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_attributes.rb
|
153
|
+
- lib/bt_test/models/scaffolding_completely_concrete_tangible_thing_data_relationships.rb
|
154
|
+
- lib/bt_test/models/team.rb
|
155
|
+
- lib/bt_test/models/team_data.rb
|
156
|
+
- lib/bt_test/models/team_data_attributes.rb
|
157
|
+
- lib/bt_test/models/team_data_relationships.rb
|
158
|
+
- lib/bt_test/models/update_scaffolding_completely_concrete_tangible_thing_request.rb
|
159
|
+
- lib/bt_test/models/webhooks_outgoing_delivery.rb
|
160
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_attempt.rb
|
161
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_attempt_data.rb
|
162
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_attributes.rb
|
163
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_attempt_data_relationships.rb
|
164
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_data.rb
|
165
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_data_attributes.rb
|
166
|
+
- lib/bt_test/models/webhooks_outgoing_delivery_data_relationships.rb
|
167
|
+
- lib/bt_test/models/webhooks_outgoing_endpoint.rb
|
168
|
+
- lib/bt_test/models/webhooks_outgoing_endpoint_data.rb
|
169
|
+
- lib/bt_test/models/webhooks_outgoing_endpoint_data_attributes.rb
|
170
|
+
- lib/bt_test/models/webhooks_outgoing_endpoint_data_relationships.rb
|
171
|
+
- lib/bt_test/version.rb
|
172
|
+
- spec/api/platform_api_spec.rb
|
173
|
+
- spec/api_client_spec.rb
|
174
|
+
- spec/configuration_spec.rb
|
175
|
+
- spec/models/create_goal_request_spec.rb
|
176
|
+
- spec/models/create_project_request_spec.rb
|
177
|
+
- spec/models/create_projects_tag_request_spec.rb
|
178
|
+
- spec/models/create_scaffolding_absolutely_abstract_creative_concept_request_spec.rb
|
179
|
+
- spec/models/create_team_request_spec.rb
|
180
|
+
- spec/models/create_webhooks_outgoing_endpoint_request_spec.rb
|
181
|
+
- spec/models/goal_data_attributes_spec.rb
|
182
|
+
- spec/models/goal_data_relationships_spec.rb
|
183
|
+
- spec/models/goal_data_spec.rb
|
184
|
+
- spec/models/goal_spec.rb
|
185
|
+
- spec/models/me_data_attributes_spec.rb
|
186
|
+
- spec/models/me_data_relationships_spec.rb
|
187
|
+
- spec/models/me_data_spec.rb
|
188
|
+
- spec/models/me_spec.rb
|
189
|
+
- spec/models/project_data_attributes_spec.rb
|
190
|
+
- spec/models/project_data_relationships_spec.rb
|
191
|
+
- spec/models/project_data_relationships_tags_spec.rb
|
192
|
+
- spec/models/project_data_spec.rb
|
193
|
+
- spec/models/project_spec.rb
|
194
|
+
- spec/models/projects_tag_data_attributes_spec.rb
|
195
|
+
- spec/models/projects_tag_data_relationships_spec.rb
|
196
|
+
- spec/models/projects_tag_data_relationships_team_data_spec.rb
|
197
|
+
- spec/models/projects_tag_data_relationships_team_spec.rb
|
198
|
+
- spec/models/projects_tag_data_spec.rb
|
199
|
+
- spec/models/projects_tag_spec.rb
|
200
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_attributes_spec.rb
|
201
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_relationships_spec.rb
|
202
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_spec.rb
|
203
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_spec.rb
|
204
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_attributes_spec.rb
|
205
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_relationships_spec.rb
|
206
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_spec.rb
|
207
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_spec.rb
|
208
|
+
- spec/models/team_data_attributes_spec.rb
|
209
|
+
- spec/models/team_data_relationships_spec.rb
|
210
|
+
- spec/models/team_data_spec.rb
|
211
|
+
- spec/models/team_spec.rb
|
212
|
+
- spec/models/update_scaffolding_completely_concrete_tangible_thing_request_spec.rb
|
213
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_attributes_spec.rb
|
214
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_relationships_spec.rb
|
215
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_spec.rb
|
216
|
+
- spec/models/webhooks_outgoing_delivery_attempt_spec.rb
|
217
|
+
- spec/models/webhooks_outgoing_delivery_data_attributes_spec.rb
|
218
|
+
- spec/models/webhooks_outgoing_delivery_data_relationships_spec.rb
|
219
|
+
- spec/models/webhooks_outgoing_delivery_data_spec.rb
|
220
|
+
- spec/models/webhooks_outgoing_delivery_spec.rb
|
221
|
+
- spec/models/webhooks_outgoing_endpoint_data_attributes_spec.rb
|
222
|
+
- spec/models/webhooks_outgoing_endpoint_data_relationships_spec.rb
|
223
|
+
- spec/models/webhooks_outgoing_endpoint_data_spec.rb
|
224
|
+
- spec/models/webhooks_outgoing_endpoint_spec.rb
|
225
|
+
- spec/spec_helper.rb
|
226
|
+
homepage: https://rubygems.org
|
227
|
+
licenses:
|
228
|
+
- Unlicense
|
229
|
+
metadata: {}
|
230
|
+
post_install_message:
|
231
|
+
rdoc_options: []
|
232
|
+
require_paths:
|
233
|
+
- lib
|
234
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
235
|
+
requirements:
|
236
|
+
- - ">="
|
237
|
+
- !ruby/object:Gem::Version
|
238
|
+
version: '2.4'
|
239
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - ">="
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '0'
|
244
|
+
requirements: []
|
245
|
+
rubygems_version: 3.3.7
|
246
|
+
signing_key:
|
247
|
+
specification_version: 4
|
248
|
+
summary: BT Test Ruby Gem
|
249
|
+
test_files:
|
250
|
+
- spec/api/platform_api_spec.rb
|
251
|
+
- spec/api_client_spec.rb
|
252
|
+
- spec/configuration_spec.rb
|
253
|
+
- spec/models/projects_tag_data_attributes_spec.rb
|
254
|
+
- spec/models/create_projects_tag_request_spec.rb
|
255
|
+
- spec/models/create_goal_request_spec.rb
|
256
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_relationships_spec.rb
|
257
|
+
- spec/models/projects_tag_data_relationships_team_spec.rb
|
258
|
+
- spec/models/team_spec.rb
|
259
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_attributes_spec.rb
|
260
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_spec.rb
|
261
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_spec.rb
|
262
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_relationships_spec.rb
|
263
|
+
- spec/models/projects_tag_data_relationships_team_data_spec.rb
|
264
|
+
- spec/models/me_data_spec.rb
|
265
|
+
- spec/models/team_data_spec.rb
|
266
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_spec.rb
|
267
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_attributes_spec.rb
|
268
|
+
- spec/models/goal_data_spec.rb
|
269
|
+
- spec/models/project_spec.rb
|
270
|
+
- spec/models/projects_tag_data_relationships_spec.rb
|
271
|
+
- spec/models/goal_data_relationships_spec.rb
|
272
|
+
- spec/models/create_webhooks_outgoing_endpoint_request_spec.rb
|
273
|
+
- spec/models/goal_spec.rb
|
274
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_attributes_spec.rb
|
275
|
+
- spec/models/create_team_request_spec.rb
|
276
|
+
- spec/models/me_data_relationships_spec.rb
|
277
|
+
- spec/models/webhooks_outgoing_delivery_spec.rb
|
278
|
+
- spec/models/webhooks_outgoing_endpoint_spec.rb
|
279
|
+
- spec/models/me_data_attributes_spec.rb
|
280
|
+
- spec/models/webhooks_outgoing_endpoint_data_spec.rb
|
281
|
+
- spec/models/project_data_attributes_spec.rb
|
282
|
+
- spec/models/update_scaffolding_completely_concrete_tangible_thing_request_spec.rb
|
283
|
+
- spec/models/webhooks_outgoing_delivery_data_relationships_spec.rb
|
284
|
+
- spec/models/project_data_relationships_spec.rb
|
285
|
+
- spec/models/project_data_relationships_tags_spec.rb
|
286
|
+
- spec/models/create_project_request_spec.rb
|
287
|
+
- spec/models/goal_data_attributes_spec.rb
|
288
|
+
- spec/models/me_spec.rb
|
289
|
+
- spec/models/webhooks_outgoing_delivery_data_spec.rb
|
290
|
+
- spec/models/project_data_spec.rb
|
291
|
+
- spec/models/create_scaffolding_absolutely_abstract_creative_concept_request_spec.rb
|
292
|
+
- spec/models/webhooks_outgoing_delivery_attempt_data_spec.rb
|
293
|
+
- spec/models/team_data_relationships_spec.rb
|
294
|
+
- spec/models/scaffolding_completely_concrete_tangible_thing_data_relationships_spec.rb
|
295
|
+
- spec/models/webhooks_outgoing_endpoint_data_attributes_spec.rb
|
296
|
+
- spec/models/team_data_attributes_spec.rb
|
297
|
+
- spec/models/webhooks_outgoing_delivery_attempt_spec.rb
|
298
|
+
- spec/models/scaffolding_absolutely_abstract_creative_concept_data_spec.rb
|
299
|
+
- spec/models/projects_tag_spec.rb
|
300
|
+
- spec/models/projects_tag_data_spec.rb
|
301
|
+
- spec/models/webhooks_outgoing_delivery_data_attributes_spec.rb
|
302
|
+
- spec/models/webhooks_outgoing_endpoint_data_relationships_spec.rb
|
303
|
+
- spec/spec_helper.rb
|