stage-ruby 0.0.02
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 +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +73 -0
- data/README.md +143 -0
- data/Rakefile +8 -0
- data/docs/AccessFeatureForm.md +8 -0
- data/docs/AccessForm.md +9 -0
- data/docs/ClientUserForm.md +7 -0
- data/docs/ClientUserObjectForm.md +13 -0
- data/docs/Field.md +8 -0
- data/docs/StageApi.md +167 -0
- data/docs/StageError.md +11 -0
- data/example.rb +41 -0
- data/git_push.sh +55 -0
- data/lib/stage-ruby/api/stage_api.rb +232 -0
- data/lib/stage-ruby/api_client.rb +388 -0
- data/lib/stage-ruby/api_error.rb +57 -0
- data/lib/stage-ruby/configuration.rb +205 -0
- data/lib/stage-ruby/models/access_feature_form.rb +227 -0
- data/lib/stage-ruby/models/access_form.rb +246 -0
- data/lib/stage-ruby/models/client_user_form.rb +209 -0
- data/lib/stage-ruby/models/client_user_object_form.rb +267 -0
- data/lib/stage-ruby/models/field.rb +217 -0
- data/lib/stage-ruby/models/stage_error.rb +245 -0
- data/lib/stage-ruby/utils.rb +13 -0
- data/lib/stage-ruby/version.rb +14 -0
- data/lib/stage-ruby.rb +45 -0
- data/spec/api/stage_api_spec.rb +69 -0
- data/spec/api_client_spec.rb +225 -0
- data/spec/base_object_spec.rb +109 -0
- data/spec/configuration_spec.rb +41 -0
- data/spec/models/access_feature_form_spec.rb +46 -0
- data/spec/models/access_form_spec.rb +52 -0
- data/spec/models/client_user_form_spec.rb +40 -0
- data/spec/models/client_user_object_form_spec.rb +76 -0
- data/spec/models/field_spec.rb +46 -0
- data/spec/models/stage_error_spec.rb +64 -0
- data/spec/spec_helper.rb +110 -0
- data/stage-ruby.gemspec +38 -0
- metadata +152 -0
@@ -0,0 +1,109 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class ArrayMapObject < Petstore::Category
|
4
|
+
attr_accessor :int_arr, :pet_arr, :int_map, :pet_map, :int_arr_map, :pet_arr_map, :boolean_true_arr, :boolean_false_arr
|
5
|
+
|
6
|
+
def self.attribute_map
|
7
|
+
{
|
8
|
+
:int_arr => :int_arr,
|
9
|
+
:pet_arr => :pet_arr,
|
10
|
+
:int_map => :int_map,
|
11
|
+
:pet_map => :pet_map,
|
12
|
+
:int_arr_map => :int_arr_map,
|
13
|
+
:pet_arr_map => :pet_arr_map,
|
14
|
+
:boolean_true_arr => :boolean_true_arr,
|
15
|
+
:boolean_false_arr => :boolean_false_arr,
|
16
|
+
}
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.swagger_types
|
20
|
+
{
|
21
|
+
:int_arr => :'Array<Integer>',
|
22
|
+
:pet_arr => :'Array<Pet>',
|
23
|
+
:int_map => :'Hash<String, Integer>',
|
24
|
+
:pet_map => :'Hash<String, Pet>',
|
25
|
+
:int_arr_map => :'Hash<String, Array<Integer>>',
|
26
|
+
:pet_arr_map => :'Hash<String, Array<Pet>>',
|
27
|
+
:boolean_true_arr => :'Array<BOOLEAN>',
|
28
|
+
:boolean_false_arr => :'Array<BOOLEAN>',
|
29
|
+
}
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe 'BaseObject' do
|
34
|
+
describe 'boolean values' do
|
35
|
+
let(:obj) { Petstore::Cat.new({declawed: false}) }
|
36
|
+
|
37
|
+
it 'should have values set' do
|
38
|
+
expect(obj.declawed).not_to be_nil
|
39
|
+
expect(obj.declawed).to eq(false)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe 'array and map properties' do
|
44
|
+
let(:obj) { ArrayMapObject.new }
|
45
|
+
|
46
|
+
let(:data) do
|
47
|
+
{int_arr: [123, 456],
|
48
|
+
pet_arr: [{name: 'Kitty'}],
|
49
|
+
int_map: {'int' => 123},
|
50
|
+
pet_map: {'pet' => {name: 'Kitty'}},
|
51
|
+
int_arr_map: {'int_arr' => [123, 456]},
|
52
|
+
pet_arr_map: {'pet_arr' => [{name: 'Kitty'}]},
|
53
|
+
boolean_true_arr: [true, "true", "TruE", 1, "y", "yes", "1", "t", "T"],
|
54
|
+
boolean_false_arr: [false, "", 0, "0", "f", nil, "null"],
|
55
|
+
}
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'works for #build_from_hash' do
|
59
|
+
obj.build_from_hash(data)
|
60
|
+
|
61
|
+
expect(obj.int_arr).to match_array([123, 456])
|
62
|
+
|
63
|
+
expect(obj.pet_arr).to be_instance_of(Array)
|
64
|
+
expect(obj.pet_arr).to be_instance_of(1)
|
65
|
+
|
66
|
+
pet = obj.pet_arr.first
|
67
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
68
|
+
expect(pet.name).to eq('Kitty')
|
69
|
+
|
70
|
+
expect(obj.int_map).to be_instance_of(Hash)
|
71
|
+
expect(obj.int_map).to eq({'int' => 123})
|
72
|
+
|
73
|
+
expect(obj.pet_map).to be_instance_of(Hash)
|
74
|
+
pet = obj.pet_map['pet']
|
75
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
76
|
+
expect(pet.name).to eq('Kitty')
|
77
|
+
|
78
|
+
expect(obj.int_arr_map).to be_instance_of(Hash)
|
79
|
+
arr = obj.int_arr_map['int_arr']
|
80
|
+
expect(arr).to match_array([123, 456])
|
81
|
+
|
82
|
+
expect(obj.pet_arr_map).to be_instance_of(Hash)
|
83
|
+
arr = obj.pet_arr_map['pet_arr']
|
84
|
+
expect(arr).to be_instance_of(Array)
|
85
|
+
expect(arr.size).to eq(1)
|
86
|
+
pet = arr.first
|
87
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
88
|
+
expect(pet.name).to eq('Kitty')
|
89
|
+
|
90
|
+
expect(obj.boolean_true_arr).to be_instance_of(Array)
|
91
|
+
obj.boolean_true_arr.each do |b|
|
92
|
+
expect(b).to eq(true)
|
93
|
+
end
|
94
|
+
|
95
|
+
expect(obj.boolean_false_arr).to be_instance_of(Array)
|
96
|
+
obj.boolean_false_arr.each do |b|
|
97
|
+
expect(b).to eq(false)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'works for #to_hash' do
|
102
|
+
obj.build_from_hash(data)
|
103
|
+
expect_data = data.dup
|
104
|
+
expect_data[:boolean_true_arr].map! {true}
|
105
|
+
expect_data[:boolean_false_arr].map! {false}
|
106
|
+
expect(obj.to_hash).to eq(expect_data)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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
|
+
|
14
|
+
describe Stage::Configuration do
|
15
|
+
let(:config) { Stage::Configuration.default }
|
16
|
+
|
17
|
+
before(:each) do
|
18
|
+
# uncomment below to setup host and base_path
|
19
|
+
# require 'URI'
|
20
|
+
# uri = URI.parse("//localhost:8080/")
|
21
|
+
# Stage.configure do |c|
|
22
|
+
# c.host = uri.host
|
23
|
+
# c.base_path = uri.path
|
24
|
+
# end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe '#base_url' do
|
28
|
+
it 'should have the default value' do
|
29
|
+
# uncomment below to test default value of the base path
|
30
|
+
# expect(config.base_url).to eq("//localhost:8080/")
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'should remove trailing slashes' do
|
34
|
+
[nil, '', '/', '//'].each do |base_path|
|
35
|
+
config.base_path = base_path
|
36
|
+
# uncomment below to test trailing slashes
|
37
|
+
# expect(config.base_url).to eq("//localhost:8080/")
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,46 @@
|
|
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::AccessFeatureForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'AccessFeatureForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::AccessFeatureForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of AccessFeatureForm' do
|
30
|
+
it 'should create an instance of AccessFeatureForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::AccessFeatureForm)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "has_access"' 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 "identifier"' 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
|
+
end
|
@@ -0,0 +1,52 @@
|
|
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::AccessForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'AccessForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::AccessForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of AccessForm' do
|
30
|
+
it 'should create an instance of AccessForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::AccessForm)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "errors"' 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 "user_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
|
+
end
|
@@ -0,0 +1,40 @@
|
|
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::ClientUserForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'ClientUserForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::ClientUserForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of ClientUserForm' do
|
30
|
+
it 'should create an instance of ClientUserForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::ClientUserForm)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "client_users"' 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
|
+
end
|
@@ -0,0 +1,76 @@
|
|
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::ClientUserObjectForm
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'ClientUserObjectForm' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::ClientUserObjectForm.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of ClientUserObjectForm' do
|
30
|
+
it 'should create an instance of ClientUserObjectForm' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::ClientUserObjectForm)
|
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 "created_at"' 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 "deleted"' 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 "identifier"' 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 "plan_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
|
+
describe 'test attribute "plan_identifier"' 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
|
+
end
|
@@ -0,0 +1,46 @@
|
|
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::Field
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'Field' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::Field.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of Field' do
|
30
|
+
it 'should create an instance of Field' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::Field)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "name"' 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 "value"' 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
|
+
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::StageError
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'StageError' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Stage::StageError.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of StageError' do
|
30
|
+
it 'should create an instance of StageError' do
|
31
|
+
expect(@instance).to be_instance_of(Stage::StageError)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
describe 'test attribute "error"' 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 "field"' 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 "message"' 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 "status"' 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 "timestamp"' 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
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,110 @@
|
|
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
|
+
# load the gem
|
13
|
+
require 'stage-ruby'
|
14
|
+
|
15
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
16
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
17
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
18
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
19
|
+
# files.
|
20
|
+
#
|
21
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
22
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
23
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
24
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
25
|
+
# a separate helper file that requires the additional dependencies and performs
|
26
|
+
# the additional setup, and require it from the spec files that actually need
|
27
|
+
# it.
|
28
|
+
#
|
29
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
30
|
+
# users commonly want.
|
31
|
+
#
|
32
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
33
|
+
RSpec.configure do |config|
|
34
|
+
# rspec-expectations config goes here. You can use an alternate
|
35
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
36
|
+
# assertions if you prefer.
|
37
|
+
config.expect_with :rspec do |expectations|
|
38
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
39
|
+
# and `failure_message` of custom matchers include text for helper methods
|
40
|
+
# defined using `chain`, e.g.:
|
41
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
42
|
+
# # => "be bigger than 2 and smaller than 4"
|
43
|
+
# ...rather than:
|
44
|
+
# # => "be bigger than 2"
|
45
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
46
|
+
end
|
47
|
+
|
48
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
49
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
50
|
+
config.mock_with :rspec do |mocks|
|
51
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
52
|
+
# a real object. This is generally recommended, and will default to
|
53
|
+
# `true` in RSpec 4.
|
54
|
+
mocks.verify_partial_doubles = true
|
55
|
+
end
|
56
|
+
|
57
|
+
# The settings below are suggested to provide a good initial experience
|
58
|
+
# with RSpec, but feel free to customize to your heart's content.
|
59
|
+
=begin
|
60
|
+
# These two settings work together to allow you to limit a spec run
|
61
|
+
# to individual examples or groups you care about by tagging them with
|
62
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
63
|
+
# get run.
|
64
|
+
config.filter_run :focus
|
65
|
+
config.run_all_when_everything_filtered = true
|
66
|
+
|
67
|
+
# Allows RSpec to persist some state between runs in order to support
|
68
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
69
|
+
# you configure your source control system to ignore this file.
|
70
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
71
|
+
|
72
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
73
|
+
# recommended. For more details, see:
|
74
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
75
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
76
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
77
|
+
config.disable_monkey_patching!
|
78
|
+
|
79
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
80
|
+
# be too noisy due to issues in dependencies.
|
81
|
+
config.warnings = true
|
82
|
+
|
83
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
84
|
+
# file, and it's useful to allow more verbose output when running an
|
85
|
+
# individual spec file.
|
86
|
+
if config.files_to_run.one?
|
87
|
+
# Use the documentation formatter for detailed output,
|
88
|
+
# unless a formatter has already been configured
|
89
|
+
# (e.g. via a command-line flag).
|
90
|
+
config.default_formatter = 'doc'
|
91
|
+
end
|
92
|
+
|
93
|
+
# Print the 10 slowest examples and example groups at the
|
94
|
+
# end of the spec run, to help surface which specs are running
|
95
|
+
# particularly slow.
|
96
|
+
config.profile_examples = 10
|
97
|
+
|
98
|
+
# Run specs in random order to surface order dependencies. If you find an
|
99
|
+
# order dependency and want to debug it, you can fix the order by providing
|
100
|
+
# the seed, which is printed after each run.
|
101
|
+
# --seed 1234
|
102
|
+
config.order = :random
|
103
|
+
|
104
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
105
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
106
|
+
# test failures related to randomization by passing the same `--seed` value
|
107
|
+
# as the one that triggered the failure.
|
108
|
+
Kernel.srand config.seed
|
109
|
+
=end
|
110
|
+
end
|
data/stage-ruby.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
=begin
|
4
|
+
#Stage API Docs
|
5
|
+
|
6
|
+
#Stage Technologies complete API Documentation
|
7
|
+
|
8
|
+
OpenAPI spec version: 1.0.0
|
9
|
+
Contact: support@heystage.com
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
11
|
+
Swagger Codegen version: 3.0.33
|
12
|
+
=end
|
13
|
+
|
14
|
+
$:.push File.expand_path("../lib", __FILE__)
|
15
|
+
require "stage-ruby/version"
|
16
|
+
|
17
|
+
Gem::Specification.new do |s|
|
18
|
+
s.name = "stage-ruby"
|
19
|
+
s.version = Stage::VERSION
|
20
|
+
s.platform = Gem::Platform::RUBY
|
21
|
+
s.authors = ["Stage Technologies, Inc."]
|
22
|
+
s.email = ["hey@heystage.com"]
|
23
|
+
s.homepage = "https://github.com/swagger-api/swagger-codegen"
|
24
|
+
s.summary = "Stage's Ruby SDK"
|
25
|
+
s.description = "Stage's Ruby SDK"
|
26
|
+
s.license = "Apache-2.0" # see https://spdx.org/licenses/
|
27
|
+
s.required_ruby_version = ">= 3.0.0"
|
28
|
+
|
29
|
+
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
|
30
|
+
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
31
|
+
|
32
|
+
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
33
|
+
|
34
|
+
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
|
35
|
+
s.test_files = `find spec/*`.split("\n")
|
36
|
+
s.executables = []
|
37
|
+
s.require_paths = ["lib"]
|
38
|
+
end
|