stage-ruby 0.0.02 → 0.0.04
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 +4 -4
- data/README.md +46 -14
- data/docs/ClientUserObjectForm.md +3 -0
- data/docs/FeatureObjectForm.md +11 -0
- data/docs/PlanObjectForm.md +12 -0
- data/docs/StageApi.md +199 -12
- data/docs/StageUserObjectForm.md +17 -0
- data/lib/.DS_Store +0 -0
- data/lib/stage-ruby/.DS_Store +0 -0
- data/lib/stage-ruby/api/stage_api.rb +203 -3
- data/lib/stage-ruby/configuration.rb +7 -0
- data/lib/stage-ruby/models/client_user_object_form.rb +33 -4
- data/lib/stage-ruby/models/feature_object_form.rb +247 -0
- data/lib/stage-ruby/models/plan_object_form.rb +259 -0
- data/lib/stage-ruby/models/stage_user_object_form.rb +296 -0
- data/lib/stage-ruby/utils.rb +2 -0
- data/lib/stage-ruby/version.rb +1 -1
- data/lib/stage-ruby.rb +3 -0
- data/spec/.DS_Store +0 -0
- data/spec/api/stage_api_spec.rb +13 -2
- data/spec/models/client_user_object_form_spec.rb +6 -0
- data/spec/models/feature_object_form_spec.rb +64 -0
- data/spec/models/plan_object_form_spec.rb +70 -0
- data/spec/models/stage_user_object_form_spec.rb +64 -0
- data/stage-ruby-0.0.02.gem +0 -0
- data/stage-ruby-0.0.03.gem +0 -0
- metadata +19 -2
@@ -0,0 +1,70 @@
|
|
1
|
+
=begin
|
2
|
+
#Stage API Docs
|
3
|
+
|
4
|
+
#Stage Technologies complete API Documentation
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@heystage.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 3.0.33
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'spec_helper'
|
13
|
+
require 'json'
|
14
|
+
require 'date'
|
15
|
+
|
16
|
+
# Unit tests for Stage::PlanObjectForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'PlanObjectForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::PlanObjectForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of PlanObjectForm' do
|
30
|
+
it 'should create an instance of PlanObjectForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::PlanObjectForm)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "description"' 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 "features"' 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 "identifier"' 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 "name"' 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 "order"' 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 "stripe_product_id"' 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
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
=begin
|
2
|
+
#Stage API Docs
|
3
|
+
|
4
|
+
#Stage Technologies complete API Documentation
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@heystage.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 3.0.33
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'spec_helper'
|
13
|
+
require 'json'
|
14
|
+
require 'date'
|
15
|
+
|
16
|
+
# Unit tests for Stage::StageUserObjectForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'StageUserObjectForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::StageUserObjectForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of StageUserObjectForm' do
|
30
|
+
it 'should create an instance of StageUserObjectForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::StageUserObjectForm)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "arena_id"' 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 "deleted"' 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 "email"' 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 "id"' 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 "password"' 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
|
+
end
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stage-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.04
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stage Technologies, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -85,12 +85,17 @@ files:
|
|
85
85
|
- docs/AccessForm.md
|
86
86
|
- docs/ClientUserForm.md
|
87
87
|
- docs/ClientUserObjectForm.md
|
88
|
+
- docs/FeatureObjectForm.md
|
88
89
|
- docs/Field.md
|
90
|
+
- docs/PlanObjectForm.md
|
89
91
|
- docs/StageApi.md
|
90
92
|
- docs/StageError.md
|
93
|
+
- docs/StageUserObjectForm.md
|
91
94
|
- example.rb
|
92
95
|
- git_push.sh
|
96
|
+
- lib/.DS_Store
|
93
97
|
- lib/stage-ruby.rb
|
98
|
+
- lib/stage-ruby/.DS_Store
|
94
99
|
- lib/stage-ruby/api/stage_api.rb
|
95
100
|
- lib/stage-ruby/api_client.rb
|
96
101
|
- lib/stage-ruby/api_error.rb
|
@@ -99,10 +104,14 @@ files:
|
|
99
104
|
- lib/stage-ruby/models/access_form.rb
|
100
105
|
- lib/stage-ruby/models/client_user_form.rb
|
101
106
|
- lib/stage-ruby/models/client_user_object_form.rb
|
107
|
+
- lib/stage-ruby/models/feature_object_form.rb
|
102
108
|
- lib/stage-ruby/models/field.rb
|
109
|
+
- lib/stage-ruby/models/plan_object_form.rb
|
103
110
|
- lib/stage-ruby/models/stage_error.rb
|
111
|
+
- lib/stage-ruby/models/stage_user_object_form.rb
|
104
112
|
- lib/stage-ruby/utils.rb
|
105
113
|
- lib/stage-ruby/version.rb
|
114
|
+
- spec/.DS_Store
|
106
115
|
- spec/api/stage_api_spec.rb
|
107
116
|
- spec/api_client_spec.rb
|
108
117
|
- spec/base_object_spec.rb
|
@@ -111,9 +120,14 @@ files:
|
|
111
120
|
- spec/models/access_form_spec.rb
|
112
121
|
- spec/models/client_user_form_spec.rb
|
113
122
|
- spec/models/client_user_object_form_spec.rb
|
123
|
+
- spec/models/feature_object_form_spec.rb
|
114
124
|
- spec/models/field_spec.rb
|
125
|
+
- spec/models/plan_object_form_spec.rb
|
115
126
|
- spec/models/stage_error_spec.rb
|
127
|
+
- spec/models/stage_user_object_form_spec.rb
|
116
128
|
- spec/spec_helper.rb
|
129
|
+
- stage-ruby-0.0.02.gem
|
130
|
+
- stage-ruby-0.0.03.gem
|
117
131
|
- stage-ruby.gemspec
|
118
132
|
homepage: https://github.com/swagger-api/swagger-codegen
|
119
133
|
licenses:
|
@@ -146,6 +160,9 @@ test_files:
|
|
146
160
|
- spec/models/client_user_object_form_spec.rb
|
147
161
|
- spec/models/field_spec.rb
|
148
162
|
- spec/models/access_form_spec.rb
|
163
|
+
- spec/models/stage_user_object_form_spec.rb
|
164
|
+
- spec/models/plan_object_form_spec.rb
|
165
|
+
- spec/models/feature_object_form_spec.rb
|
149
166
|
- spec/models/stage_error_spec.rb
|
150
167
|
- spec/models/access_feature_form_spec.rb
|
151
168
|
- spec/models/client_user_form_spec.rb
|