agrid-client 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +65 -0
- data/README.md +15 -0
- data/agrid_client.gemspec +32 -0
- data/lib/agrid_client.rb +69 -0
- data/lib/agrid_client/api/cities_api.rb +80 -0
- data/lib/agrid_client/api/companies_api.rb +265 -0
- data/lib/agrid_client/api/filters_api.rb +91 -0
- data/lib/agrid_client/api/leads_api.rb +87 -0
- data/lib/agrid_client/api/quotes_api.rb +162 -0
- data/lib/agrid_client/api/services_api.rb +83 -0
- data/lib/agrid_client/api_client.rb +365 -0
- data/lib/agrid_client/api_error.rb +36 -0
- data/lib/agrid_client/configuration.rb +167 -0
- data/lib/agrid_client/models/address.rb +121 -0
- data/lib/agrid_client/models/category.rb +75 -0
- data/lib/agrid_client/models/city_company.rb +67 -0
- data/lib/agrid_client/models/city_with_full_state.rb +73 -0
- data/lib/agrid_client/models/city_with_state_name.rb +67 -0
- data/lib/agrid_client/models/company.rb +108 -0
- data/lib/agrid_client/models/company_ranking.rb +45 -0
- data/lib/agrid_client/models/concerns/swagger_model.rb +106 -0
- data/lib/agrid_client/models/customer.rb +90 -0
- data/lib/agrid_client/models/customer_input.rb +73 -0
- data/lib/agrid_client/models/data_check.rb +45 -0
- data/lib/agrid_client/models/filter.rb +75 -0
- data/lib/agrid_client/models/filter_category.rb +73 -0
- data/lib/agrid_client/models/image.rb +37 -0
- data/lib/agrid_client/models/inline_response_200.rb +67 -0
- data/lib/agrid_client/models/inline_response_200_1.rb +78 -0
- data/lib/agrid_client/models/item.rb +90 -0
- data/lib/agrid_client/models/lead.rb +77 -0
- data/lib/agrid_client/models/lead_input.rb +90 -0
- data/lib/agrid_client/models/location.rb +66 -0
- data/lib/agrid_client/models/phone.rb +58 -0
- data/lib/agrid_client/models/price_range.rb +73 -0
- data/lib/agrid_client/models/quote.rb +124 -0
- data/lib/agrid_client/models/sale.rb +28 -0
- data/lib/agrid_client/models/service.rb +90 -0
- data/lib/agrid_client/models/state.rb +67 -0
- data/lib/agrid_client/version.rb +3 -0
- data/spec/api/cities_api_spec.rb +49 -0
- data/spec/api/companies_api_spec.rb +69 -0
- data/spec/api/filters_api_spec.rb +54 -0
- data/spec/api/leads_api_spec.rb +52 -0
- data/spec/api/quotes_api_spec.rb +74 -0
- data/spec/api/services_api_spec.rb +52 -0
- data/spec/models/address_spec.rb +116 -0
- data/spec/models/category_spec.rb +66 -0
- data/spec/models/city_with_full_state_spec.rb +66 -0
- data/spec/models/city_with_state_name_spec.rb +56 -0
- data/spec/models/company_spec.rb +116 -0
- data/spec/models/customer_input_spec.rb +66 -0
- data/spec/models/customer_spec.rb +86 -0
- data/spec/models/filter_category_spec.rb +66 -0
- data/spec/models/filter_spec.rb +66 -0
- data/spec/models/inline_response_200_1_spec.rb +66 -0
- data/spec/models/inline_response_200_spec.rb +46 -0
- data/spec/models/item_spec.rb +86 -0
- data/spec/models/lead_input_spec.rb +86 -0
- data/spec/models/lead_spec.rb +76 -0
- data/spec/models/location_spec.rb +56 -0
- data/spec/models/phone_spec.rb +46 -0
- data/spec/models/price_range_spec.rb +56 -0
- data/spec/models/quote_spec.rb +116 -0
- data/spec/models/service_spec.rb +76 -0
- data/spec/models/state_spec.rb +56 -0
- data/spec/spec_helper.rb +23 -0
- metadata +319 -0
@@ -0,0 +1,116 @@
|
|
1
|
+
=begin
|
2
|
+
Agrid Quotes API
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AgridClient::Quote
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Quote' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = AgridClient::Quote.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Quote' do
|
31
|
+
it 'should create an instact of Quote' do
|
32
|
+
@instance.should be_a(AgridClient::Quote)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here
|
38
|
+
# should be_a()
|
39
|
+
# should be_nil
|
40
|
+
# should ==
|
41
|
+
# should_not ==
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "title"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here
|
48
|
+
# should be_a()
|
49
|
+
# should be_nil
|
50
|
+
# should ==
|
51
|
+
# should_not ==
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'test attribute "price"' do
|
56
|
+
it 'should work' do
|
57
|
+
# assertion here
|
58
|
+
# should be_a()
|
59
|
+
# should be_nil
|
60
|
+
# should ==
|
61
|
+
# should_not ==
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "images"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here
|
68
|
+
# should be_a()
|
69
|
+
# should be_nil
|
70
|
+
# should ==
|
71
|
+
# should_not ==
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'test attribute "company"' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here
|
78
|
+
# should be_a()
|
79
|
+
# should be_nil
|
80
|
+
# should ==
|
81
|
+
# should_not ==
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
describe 'test attribute "service"' do
|
86
|
+
it 'should work' do
|
87
|
+
# assertion here
|
88
|
+
# should be_a()
|
89
|
+
# should be_nil
|
90
|
+
# should ==
|
91
|
+
# should_not ==
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
describe 'test attribute "categories"' do
|
96
|
+
it 'should work' do
|
97
|
+
# assertion here
|
98
|
+
# should be_a()
|
99
|
+
# should be_nil
|
100
|
+
# should ==
|
101
|
+
# should_not ==
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
describe 'test attribute "filters"' do
|
106
|
+
it 'should work' do
|
107
|
+
# assertion here
|
108
|
+
# should be_a()
|
109
|
+
# should be_nil
|
110
|
+
# should ==
|
111
|
+
# should_not ==
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
116
|
+
|
@@ -0,0 +1,76 @@
|
|
1
|
+
=begin
|
2
|
+
Agrid Quotes API
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AgridClient::Service
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Service' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = AgridClient::Service.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Service' do
|
31
|
+
it 'should create an instact of Service' do
|
32
|
+
@instance.should be_a(AgridClient::Service)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here
|
38
|
+
# should be_a()
|
39
|
+
# should be_nil
|
40
|
+
# should ==
|
41
|
+
# should_not ==
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "title"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here
|
48
|
+
# should be_a()
|
49
|
+
# should be_nil
|
50
|
+
# should ==
|
51
|
+
# should_not ==
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'test attribute "online"' do
|
56
|
+
it 'should work' do
|
57
|
+
# assertion here
|
58
|
+
# should be_a()
|
59
|
+
# should be_nil
|
60
|
+
# should ==
|
61
|
+
# should_not ==
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "tags"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here
|
68
|
+
# should be_a()
|
69
|
+
# should be_nil
|
70
|
+
# should ==
|
71
|
+
# should_not ==
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
@@ -0,0 +1,56 @@
|
|
1
|
+
=begin
|
2
|
+
Agrid Quotes API
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AgridClient::State
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'State' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = AgridClient::State.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of State' do
|
31
|
+
it 'should create an instact of State' do
|
32
|
+
@instance.should be_a(AgridClient::State)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "acronym"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here
|
38
|
+
# should be_a()
|
39
|
+
# should be_nil
|
40
|
+
# should ==
|
41
|
+
# should_not ==
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'test attribute "title"' do
|
46
|
+
it 'should work' do
|
47
|
+
# assertion here
|
48
|
+
# should be_a()
|
49
|
+
# should be_nil
|
50
|
+
# should ==
|
51
|
+
# should_not ==
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'agrid_client'
|
2
|
+
require 'vcr'
|
3
|
+
|
4
|
+
VCR.configure do |config|
|
5
|
+
config.cassette_library_dir = "fixtures/vcr_cassettes"
|
6
|
+
config.hook_into :webmock # or :fakeweb
|
7
|
+
end
|
8
|
+
|
9
|
+
RSpec.configure do |config|
|
10
|
+
config.expect_with :rspec do |expectations|
|
11
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
12
|
+
expectations.syntax = :should
|
13
|
+
end
|
14
|
+
|
15
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
16
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
17
|
+
config.mock_with :rspec do |mocks|
|
18
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
19
|
+
# a real object. This is generally recommended, and will default to
|
20
|
+
# `true` in RSpec 4.
|
21
|
+
mocks.verify_partial_doubles = true
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,319 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: agrid-client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Guilherme B. Moretti
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-04-26 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: '0.2'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.2.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.2'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.2.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: json
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.4'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.4.6
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.4'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.4.6
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rspec
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '3.2'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 3.2.0
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.2'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 3.2.0
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: vcr
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - "~>"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '2.9'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.9.3
|
83
|
+
type: :development
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.9'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 2.9.3
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: webmock
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1.6'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 1.6.2
|
103
|
+
type: :development
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.6'
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 1.6.2
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: autotest
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - "~>"
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '4.4'
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 4.4.6
|
123
|
+
type: :development
|
124
|
+
prerelease: false
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '4.4'
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 4.4.6
|
133
|
+
- !ruby/object:Gem::Dependency
|
134
|
+
name: autotest-rails-pure
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '4.1'
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 4.1.2
|
143
|
+
type: :development
|
144
|
+
prerelease: false
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - "~>"
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '4.1'
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 4.1.2
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: autotest-growl
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0.2'
|
160
|
+
- - ">="
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: 0.2.16
|
163
|
+
type: :development
|
164
|
+
prerelease: false
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - "~>"
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '0.2'
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: 0.2.16
|
173
|
+
- !ruby/object:Gem::Dependency
|
174
|
+
name: autotest-fsevent
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0.2'
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 0.2.11
|
183
|
+
type: :development
|
184
|
+
prerelease: false
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - "~>"
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: '0.2'
|
190
|
+
- - ">="
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: 0.2.11
|
193
|
+
description: ''
|
194
|
+
email:
|
195
|
+
- guilhermebmoretti@gmail.com
|
196
|
+
executables: []
|
197
|
+
extensions: []
|
198
|
+
extra_rdoc_files: []
|
199
|
+
files:
|
200
|
+
- Gemfile
|
201
|
+
- Gemfile.lock
|
202
|
+
- README.md
|
203
|
+
- agrid_client.gemspec
|
204
|
+
- lib/agrid_client.rb
|
205
|
+
- lib/agrid_client/api/cities_api.rb
|
206
|
+
- lib/agrid_client/api/companies_api.rb
|
207
|
+
- lib/agrid_client/api/filters_api.rb
|
208
|
+
- lib/agrid_client/api/leads_api.rb
|
209
|
+
- lib/agrid_client/api/quotes_api.rb
|
210
|
+
- lib/agrid_client/api/services_api.rb
|
211
|
+
- lib/agrid_client/api_client.rb
|
212
|
+
- lib/agrid_client/api_error.rb
|
213
|
+
- lib/agrid_client/configuration.rb
|
214
|
+
- lib/agrid_client/models/address.rb
|
215
|
+
- lib/agrid_client/models/category.rb
|
216
|
+
- lib/agrid_client/models/city_company.rb
|
217
|
+
- lib/agrid_client/models/city_with_full_state.rb
|
218
|
+
- lib/agrid_client/models/city_with_state_name.rb
|
219
|
+
- lib/agrid_client/models/company.rb
|
220
|
+
- lib/agrid_client/models/company_ranking.rb
|
221
|
+
- lib/agrid_client/models/concerns/swagger_model.rb
|
222
|
+
- lib/agrid_client/models/customer.rb
|
223
|
+
- lib/agrid_client/models/customer_input.rb
|
224
|
+
- lib/agrid_client/models/data_check.rb
|
225
|
+
- lib/agrid_client/models/filter.rb
|
226
|
+
- lib/agrid_client/models/filter_category.rb
|
227
|
+
- lib/agrid_client/models/image.rb
|
228
|
+
- lib/agrid_client/models/inline_response_200.rb
|
229
|
+
- lib/agrid_client/models/inline_response_200_1.rb
|
230
|
+
- lib/agrid_client/models/item.rb
|
231
|
+
- lib/agrid_client/models/lead.rb
|
232
|
+
- lib/agrid_client/models/lead_input.rb
|
233
|
+
- lib/agrid_client/models/location.rb
|
234
|
+
- lib/agrid_client/models/phone.rb
|
235
|
+
- lib/agrid_client/models/price_range.rb
|
236
|
+
- lib/agrid_client/models/quote.rb
|
237
|
+
- lib/agrid_client/models/sale.rb
|
238
|
+
- lib/agrid_client/models/service.rb
|
239
|
+
- lib/agrid_client/models/state.rb
|
240
|
+
- lib/agrid_client/version.rb
|
241
|
+
- spec/api/cities_api_spec.rb
|
242
|
+
- spec/api/companies_api_spec.rb
|
243
|
+
- spec/api/filters_api_spec.rb
|
244
|
+
- spec/api/leads_api_spec.rb
|
245
|
+
- spec/api/quotes_api_spec.rb
|
246
|
+
- spec/api/services_api_spec.rb
|
247
|
+
- spec/models/address_spec.rb
|
248
|
+
- spec/models/category_spec.rb
|
249
|
+
- spec/models/city_with_full_state_spec.rb
|
250
|
+
- spec/models/city_with_state_name_spec.rb
|
251
|
+
- spec/models/company_spec.rb
|
252
|
+
- spec/models/customer_input_spec.rb
|
253
|
+
- spec/models/customer_spec.rb
|
254
|
+
- spec/models/filter_category_spec.rb
|
255
|
+
- spec/models/filter_spec.rb
|
256
|
+
- spec/models/inline_response_200_1_spec.rb
|
257
|
+
- spec/models/inline_response_200_spec.rb
|
258
|
+
- spec/models/item_spec.rb
|
259
|
+
- spec/models/lead_input_spec.rb
|
260
|
+
- spec/models/lead_spec.rb
|
261
|
+
- spec/models/location_spec.rb
|
262
|
+
- spec/models/phone_spec.rb
|
263
|
+
- spec/models/price_range_spec.rb
|
264
|
+
- spec/models/quote_spec.rb
|
265
|
+
- spec/models/service_spec.rb
|
266
|
+
- spec/models/state_spec.rb
|
267
|
+
- spec/spec_helper.rb
|
268
|
+
homepage: http://agrid.com.br
|
269
|
+
licenses:
|
270
|
+
- MIT
|
271
|
+
metadata: {}
|
272
|
+
post_install_message:
|
273
|
+
rdoc_options: []
|
274
|
+
require_paths:
|
275
|
+
- lib
|
276
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
277
|
+
requirements:
|
278
|
+
- - ">="
|
279
|
+
- !ruby/object:Gem::Version
|
280
|
+
version: '0'
|
281
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - ">="
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: '0'
|
286
|
+
requirements: []
|
287
|
+
rubyforge_project:
|
288
|
+
rubygems_version: 2.5.1
|
289
|
+
signing_key:
|
290
|
+
specification_version: 4
|
291
|
+
summary: Ruby client for Agrid's prices API
|
292
|
+
test_files:
|
293
|
+
- spec/api/leads_api_spec.rb
|
294
|
+
- spec/api/quotes_api_spec.rb
|
295
|
+
- spec/api/companies_api_spec.rb
|
296
|
+
- spec/api/services_api_spec.rb
|
297
|
+
- spec/api/cities_api_spec.rb
|
298
|
+
- spec/api/filters_api_spec.rb
|
299
|
+
- spec/models/address_spec.rb
|
300
|
+
- spec/models/lead_spec.rb
|
301
|
+
- spec/models/price_range_spec.rb
|
302
|
+
- spec/models/city_with_state_name_spec.rb
|
303
|
+
- spec/models/lead_input_spec.rb
|
304
|
+
- spec/models/customer_input_spec.rb
|
305
|
+
- spec/models/state_spec.rb
|
306
|
+
- spec/models/phone_spec.rb
|
307
|
+
- spec/models/inline_response_200_1_spec.rb
|
308
|
+
- spec/models/quote_spec.rb
|
309
|
+
- spec/models/company_spec.rb
|
310
|
+
- spec/models/item_spec.rb
|
311
|
+
- spec/models/city_with_full_state_spec.rb
|
312
|
+
- spec/models/category_spec.rb
|
313
|
+
- spec/models/filter_spec.rb
|
314
|
+
- spec/models/inline_response_200_spec.rb
|
315
|
+
- spec/models/location_spec.rb
|
316
|
+
- spec/models/service_spec.rb
|
317
|
+
- spec/models/customer_spec.rb
|
318
|
+
- spec/models/filter_category_spec.rb
|
319
|
+
- spec/spec_helper.rb
|