patch_ruby 1.9.0 → 1.11.0

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.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/Gemfile +1 -2
  4. data/Gemfile.lock +40 -44
  5. data/Makefile +2 -2
  6. data/lib/patch_ruby/api/estimates_api.rb +33 -25
  7. data/lib/patch_ruby/api/orders_api.rb +21 -16
  8. data/lib/patch_ruby/api/preferences_api.rb +17 -13
  9. data/lib/patch_ruby/api/projects_api.rb +9 -7
  10. data/lib/patch_ruby/api_client.rb +51 -49
  11. data/lib/patch_ruby/api_error.rb +1 -1
  12. data/lib/patch_ruby/configuration.rb +38 -9
  13. data/lib/patch_ruby/models/allocation.rb +21 -11
  14. data/lib/patch_ruby/models/create_bitcoin_estimate_request.rb +25 -19
  15. data/lib/patch_ruby/models/create_ethereum_estimate_request.rb +26 -21
  16. data/lib/patch_ruby/models/create_flight_estimate_request.rb +323 -0
  17. data/lib/patch_ruby/models/create_mass_estimate_request.rb +22 -13
  18. data/lib/patch_ruby/models/create_order_request.rb +21 -11
  19. data/lib/patch_ruby/models/create_preference_request.rb +21 -11
  20. data/lib/patch_ruby/models/create_shipping_estimate_request.rb +371 -0
  21. data/lib/patch_ruby/models/create_success_response.rb +247 -0
  22. data/lib/patch_ruby/models/create_vehicle_estimate_request.rb +326 -0
  23. data/lib/patch_ruby/models/error_response.rb +22 -13
  24. data/lib/patch_ruby/models/estimate.rb +22 -13
  25. data/lib/patch_ruby/models/estimate_list_response.rb +22 -13
  26. data/lib/patch_ruby/models/estimate_response.rb +22 -13
  27. data/lib/patch_ruby/models/meta_index_object.rb +23 -15
  28. data/lib/patch_ruby/models/order.rb +23 -15
  29. data/lib/patch_ruby/models/order_list_response.rb +22 -13
  30. data/lib/patch_ruby/models/order_response.rb +22 -13
  31. data/lib/patch_ruby/models/photo.rb +21 -11
  32. data/lib/patch_ruby/models/preference.rb +21 -11
  33. data/lib/patch_ruby/models/preference_list_response.rb +22 -13
  34. data/lib/patch_ruby/models/preference_response.rb +22 -13
  35. data/lib/patch_ruby/models/project.rb +24 -17
  36. data/lib/patch_ruby/models/project_list_response.rb +22 -13
  37. data/lib/patch_ruby/models/project_response.rb +22 -13
  38. data/lib/patch_ruby/models/sdg.rb +21 -11
  39. data/lib/patch_ruby/models/standard.rb +21 -11
  40. data/lib/patch_ruby/version.rb +2 -2
  41. data/lib/patch_ruby.rb +5 -1
  42. data/patch_ruby.gemspec +8 -3
  43. data/spec/api_client_spec.rb +34 -13
  44. data/spec/configuration_spec.rb +1 -1
  45. data/spec/integration/estimates_spec.rb +17 -1
  46. data/spec/integration/preferences_spec.rb +1 -1
  47. data/spec/models/create_mass_estimate_request_spec.rb +1 -1
  48. data/spec/models/error_response_spec.rb +1 -1
  49. data/spec/models/estimate_list_response_spec.rb +1 -1
  50. data/spec/models/estimate_response_spec.rb +1 -1
  51. data/spec/models/estimate_spec.rb +1 -1
  52. data/spec/models/meta_index_object_spec.rb +1 -1
  53. data/spec/models/order_list_response_spec.rb +1 -1
  54. data/spec/models/order_response_spec.rb +1 -1
  55. data/spec/models/order_spec.rb +1 -1
  56. data/spec/models/preference_list_response_spec.rb +1 -1
  57. data/spec/models/preference_response_spec.rb +1 -1
  58. data/spec/models/project_list_response_spec.rb +1 -1
  59. data/spec/models/project_response_spec.rb +1 -1
  60. data/spec/models/project_spec.rb +1 -1
  61. data/spec/spec_helper.rb +69 -61
  62. metadata +56 -58
  63. data/lib/patch_ruby/.api_client.rb.un~ +0 -0
  64. data/lib/patch_ruby/.configuration.rb.un~ +0 -0
  65. data/lib/patch_ruby/.version.rb.un~ +0 -0
  66. data/lib/patch_ruby/api/.orders_api.rb.un~ +0 -0
  67. data/lib/patch_ruby/models/.create_ethereum_estimate_request.rb.un~ +0 -0
  68. data/spec/.spec_helper.rb.un~ +0 -0
  69. data/spec/integration/.estimates_spec.rb.un~ +0 -0
  70. data/spec/integration/.orders_spec.rb.un~ +0 -0
  71. data/spec/integration/.preferences_spec.rb.un~ +0 -0
  72. data/spec/integration/.projects_spec.rb.un~ +0 -0
@@ -41,7 +41,7 @@ describe 'Order' do
41
41
  metadata: @instance.metadata
42
42
  }
43
43
  }
44
- let(:nullable_properties) { Set.new(["patch_fee_cents_usd", "price_cents_usd"]) }
44
+ let(:nullable_properties) { Set.new([:patch_fee_cents_usd, :price_cents_usd]) }
45
45
  end
46
46
 
47
47
  describe 'test an instance of Order' do
@@ -30,7 +30,7 @@ describe 'PreferenceListResponse' do
30
30
  it_behaves_like "a generated class" do
31
31
  let(:instance) { @instance }
32
32
  let(:instance_hash) { { success: @instance.success, error: @instance.error, data: @instance.data, meta: @instance.meta } }
33
- let(:nullable_properties) { Set.new(["error"]) }
33
+ let(:nullable_properties) { Set.new([:error]) }
34
34
  end
35
35
 
36
36
  describe 'test an instance of PreferenceListResponse' do
@@ -30,7 +30,7 @@ describe 'PreferenceResponse' do
30
30
  it_behaves_like "a generated class" do
31
31
  let(:instance) { @instance }
32
32
  let(:instance_hash) { { success: @instance.success, error: @instance.error, data: @instance.data } }
33
- let(:nullable_properties) { Set.new(["error"]) }
33
+ let(:nullable_properties) { Set.new([:error]) }
34
34
  end
35
35
 
36
36
  describe 'test an instance of PreferenceResponse' do
@@ -30,7 +30,7 @@ describe 'ProjectListResponse' do
30
30
  it_behaves_like "a generated class" do
31
31
  let(:instance) { @instance }
32
32
  let(:instance_hash) { { success: @instance.success, error: @instance.error, data: @instance.data, meta: @instance.meta } }
33
- let(:nullable_properties) { Set.new(["error"]) }
33
+ let(:nullable_properties) { Set.new([:error]) }
34
34
  end
35
35
 
36
36
  describe 'test an instance of ProjectListResponse' do
@@ -30,7 +30,7 @@ describe 'ProjectResponse' do
30
30
  it_behaves_like "a generated class" do
31
31
  let(:instance) { @instance }
32
32
  let(:instance_hash) { { success: @instance.success, error: @instance.error, data: @instance.data } }
33
- let(:nullable_properties) { Set.new(["error"]) }
33
+ let(:nullable_properties) { Set.new([:error]) }
34
34
  end
35
35
 
36
36
  describe 'test an instance of ProjectResponse' do
@@ -44,7 +44,7 @@ describe 'Project' do
44
44
  standard: @instance.standard
45
45
  }
46
46
  }
47
- let(:nullable_properties) { Set.new(["photos", "standard", "sdgs"]) }
47
+ let(:nullable_properties) { Set.new([:photos, :standard, :sdgs]) }
48
48
  end
49
49
 
50
50
  describe 'test an instance of Project' do
data/spec/spec_helper.rb CHANGED
@@ -6,17 +6,20 @@
6
6
  The version of the OpenAPI document: v1
7
7
  Contact: developers@usepatch.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.3.1
9
+ OpenAPI Generator version: 5.2.1
10
10
 
11
11
  =end
12
12
 
13
13
  # load the gem
14
14
  require 'patch_ruby'
15
+ # Start custom
15
16
  require 'constants'
16
17
  require 'factory_bot'
18
+ require 'pry'
19
+ # End custom
17
20
 
18
21
  # Require shared spec examples
19
- Dir["./spec/support/**/*.rb"].sort.each { |f| require f }
22
+ Dir['./spec/support/**/*.rb'].sort.each { |f| require f }
20
23
 
21
24
  # The following was generated by the `rspec --init` command. Conventionally, all
22
25
  # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
@@ -37,21 +40,6 @@ Dir["./spec/support/**/*.rb"].sort.each { |f| require f }
37
40
  #
38
41
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
39
42
  RSpec.configure do |config|
40
- # Use FactoryBot for test factories
41
- config.include FactoryBot::Syntax::Methods
42
- config.before(:suite) do
43
- FactoryBot.find_definitions
44
- Patch.configure do |config|
45
- if ENV.fetch('LOCAL_SDK_TEST', false)
46
- config.access_token = ENV.fetch('LOCAL_PATCH_API_KEY')
47
- config.scheme = 'http'
48
- config.host = 'api.patch.test:3000'
49
- else
50
- config.access_token = ENV.fetch('SANDBOX_API_KEY')
51
- end
52
- end
53
- end
54
-
55
43
  # rspec-expectations config goes here. You can use an alternate
56
44
  # assertion/expectation library such as wrong or the stdlib/minitest
57
45
  # assertions if you prefer.
@@ -75,57 +63,77 @@ RSpec.configure do |config|
75
63
  mocks.verify_partial_doubles = true
76
64
  end
77
65
 
66
+ # The settings below are suggested to provide a good initial experience
67
+ # with RSpec, but feel free to customize to your heart's content.
68
+ # # These two settings work together to allow you to limit a spec run
69
+ # # to individual examples or groups you care about by tagging them with
70
+ # # `:focus` metadata. When nothing is tagged with `:focus`, all examples
71
+ # # get run.
72
+ # config.filter_run :focus
73
+ # config.run_all_when_everything_filtered = true
74
+ #
75
+ # # Allows RSpec to persist some state between runs in order to support
76
+ # # the `--only-failures` and `--next-failure` CLI options. We recommend
77
+ # # you configure your source control system to ignore this file.
78
+ # config.example_status_persistence_file_path = "spec/examples.txt"
79
+ #
80
+ # # Limits the available syntax to the non-monkey patched syntax that is
81
+ # # recommended. For more details, see:
82
+ # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
83
+ # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
84
+ # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
85
+ # config.disable_monkey_patching!
86
+ #
87
+ # # This setting enables warnings. It's recommended, but in some cases may
88
+ # # be too noisy due to issues in dependencies.
89
+ # config.warnings = true
90
+ #
91
+ # # Many RSpec users commonly either run the entire suite or an individual
92
+ # # file, and it's useful to allow more verbose output when running an
93
+ # # individual spec file.
94
+ # if config.files_to_run.one?
95
+ # # Use the documentation formatter for detailed output,
96
+ # # unless a formatter has already been configured
97
+ # # (e.g. via a command-line flag).
98
+ # config.default_formatter = 'doc'
99
+ # end
100
+ #
101
+ # # Print the 10 slowest examples and example groups at the
102
+ # # end of the spec run, to help surface which specs are running
103
+ # # particularly slow.
104
+ # config.profile_examples = 10
105
+
78
106
  # Run specs in random order to surface order dependencies. If you find an
79
107
  # order dependency and want to debug it, you can fix the order by providing
80
108
  # the seed, which is printed after each run.
81
109
  # --seed 1234
82
110
  config.order = :random
83
111
 
84
- # The settings below are suggested to provide a good initial experience
85
- # with RSpec, but feel free to customize to your heart's content.
86
- =begin
87
- # These two settings work together to allow you to limit a spec run
88
- # to individual examples or groups you care about by tagging them with
89
- # `:focus` metadata. When nothing is tagged with `:focus`, all examples
90
- # get run.
91
- config.filter_run :focus
92
- config.run_all_when_everything_filtered = true
93
-
94
- # Allows RSpec to persist some state between runs in order to support
95
- # the `--only-failures` and `--next-failure` CLI options. We recommend
96
- # you configure your source control system to ignore this file.
97
- config.example_status_persistence_file_path = "spec/examples.txt"
112
+ # # Seed global randomization in this process using the `--seed` CLI option.
113
+ # # Setting this allows you to use `--seed` to deterministically reproduce
114
+ # # test failures related to randomization by passing the same `--seed` value
115
+ # # as the one that triggered the failure.
116
+ # Kernel.srand config.seed
98
117
 
99
- # Limits the available syntax to the non-monkey patched syntax that is
100
- # recommended. For more details, see:
101
- # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
102
- # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
103
- # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
104
- config.disable_monkey_patching!
118
+ ######################
119
+ # Start custom section
120
+ ######################
105
121
 
106
- # This setting enables warnings. It's recommended, but in some cases may
107
- # be too noisy due to issues in dependencies.
108
- config.warnings = true
109
-
110
- # Many RSpec users commonly either run the entire suite or an individual
111
- # file, and it's useful to allow more verbose output when running an
112
- # individual spec file.
113
- if config.files_to_run.one?
114
- # Use the documentation formatter for detailed output,
115
- # unless a formatter has already been configured
116
- # (e.g. via a command-line flag).
117
- config.default_formatter = 'doc'
122
+ # Use FactoryBot for test factories
123
+ config.include FactoryBot::Syntax::Methods
124
+ config.before(:suite) do
125
+ FactoryBot.find_definitions
126
+ Patch.configure do |config|
127
+ if ENV.fetch('LOCAL_SDK_TEST', false)
128
+ config.access_token = ENV.fetch('LOCAL_PATCH_API_KEY')
129
+ config.scheme = 'http'
130
+ config.host = 'api.patch.test:3000'
131
+ else
132
+ config.access_token = ENV.fetch('SANDBOX_API_KEY')
133
+ end
134
+ end
118
135
  end
119
-
120
- # Print the 10 slowest examples and example groups at the
121
- # end of the spec run, to help surface which specs are running
122
- # particularly slow.
123
- config.profile_examples = 10
124
-
125
- # Seed global randomization in this process using the `--seed` CLI option.
126
- # Setting this allows you to use `--seed` to deterministically reproduce
127
- # test failures related to randomization by passing the same `--seed` value
128
- # as the one that triggered the failure.
129
- Kernel.srand config.seed
130
- =end
136
+ ######################
137
+ # End custom section
138
+ ######################
131
139
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: patch_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patch Technology
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-18 00:00:00.000000000 Z
11
+ date: 2021-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -31,45 +31,53 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.1
33
33
  - !ruby/object:Gem::Dependency
34
- name: json
34
+ name: rspec
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.1'
39
+ version: '3.6'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 2.1.0
43
- type: :runtime
42
+ version: 3.6.0
43
+ type: :development
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
- version: '2.1'
49
+ version: '3.6'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 2.1.0
52
+ version: 3.6.0
53
53
  - !ruby/object:Gem::Dependency
54
- name: rspec
54
+ name: factory_bot
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: '3.6'
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: 3.6.0
59
+ version: '6.2'
63
60
  type: :development
64
61
  prerelease: false
65
62
  version_requirements: !ruby/object:Gem::Requirement
66
63
  requirements:
67
64
  - - "~>"
68
65
  - !ruby/object:Gem::Version
69
- version: '3.6'
66
+ version: '6.2'
67
+ - !ruby/object:Gem::Dependency
68
+ name: pry
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
70
71
  - - ">="
71
72
  - !ruby/object:Gem::Version
72
- version: 3.6.0
73
+ version: '0'
74
+ type: :development
75
+ prerelease: false
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
73
81
  description: Ruby wrapper for the Patch API
74
82
  email:
75
83
  - developers@usepatch.com
@@ -85,10 +93,6 @@ files:
85
93
  - Rakefile
86
94
  - bin/rspec
87
95
  - lib/patch_ruby.rb
88
- - lib/patch_ruby/.api_client.rb.un~
89
- - lib/patch_ruby/.configuration.rb.un~
90
- - lib/patch_ruby/.version.rb.un~
91
- - lib/patch_ruby/api/.orders_api.rb.un~
92
96
  - lib/patch_ruby/api/estimates_api.rb
93
97
  - lib/patch_ruby/api/orders_api.rb
94
98
  - lib/patch_ruby/api/preferences_api.rb
@@ -96,13 +100,16 @@ files:
96
100
  - lib/patch_ruby/api_client.rb
97
101
  - lib/patch_ruby/api_error.rb
98
102
  - lib/patch_ruby/configuration.rb
99
- - lib/patch_ruby/models/.create_ethereum_estimate_request.rb.un~
100
103
  - lib/patch_ruby/models/allocation.rb
101
104
  - lib/patch_ruby/models/create_bitcoin_estimate_request.rb
102
105
  - lib/patch_ruby/models/create_ethereum_estimate_request.rb
106
+ - lib/patch_ruby/models/create_flight_estimate_request.rb
103
107
  - lib/patch_ruby/models/create_mass_estimate_request.rb
104
108
  - lib/patch_ruby/models/create_order_request.rb
105
109
  - lib/patch_ruby/models/create_preference_request.rb
110
+ - lib/patch_ruby/models/create_shipping_estimate_request.rb
111
+ - lib/patch_ruby/models/create_success_response.rb
112
+ - lib/patch_ruby/models/create_vehicle_estimate_request.rb
106
113
  - lib/patch_ruby/models/error_response.rb
107
114
  - lib/patch_ruby/models/estimate.rb
108
115
  - lib/patch_ruby/models/estimate_list_response.rb
@@ -122,7 +129,6 @@ files:
122
129
  - lib/patch_ruby/models/standard.rb
123
130
  - lib/patch_ruby/version.rb
124
131
  - patch_ruby.gemspec
125
- - spec/.spec_helper.rb.un~
126
132
  - spec/api/estimates_api_spec.rb
127
133
  - spec/api/orders_api_spec.rb
128
134
  - spec/api/preferences_api_spec.rb
@@ -148,10 +154,6 @@ files:
148
154
  - spec/factories/project_list_responses.rb
149
155
  - spec/factories/project_responses.rb
150
156
  - spec/factories/projects.rb
151
- - spec/integration/.estimates_spec.rb.un~
152
- - spec/integration/.orders_spec.rb.un~
153
- - spec/integration/.preferences_spec.rb.un~
154
- - spec/integration/.projects_spec.rb.un~
155
157
  - spec/integration/estimates_spec.rb
156
158
  - spec/integration/orders_spec.rb
157
159
  - spec/integration/preferences_spec.rb
@@ -181,7 +183,7 @@ homepage: https://www.patch.io
181
183
  licenses:
182
184
  - MIT
183
185
  metadata: {}
184
- post_install_message:
186
+ post_install_message:
185
187
  rdoc_options: []
186
188
  require_paths:
187
189
  - lib
@@ -197,61 +199,57 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
199
  version: '0'
198
200
  requirements: []
199
201
  rubygems_version: 3.1.2
200
- signing_key:
202
+ signing_key:
201
203
  specification_version: 4
202
204
  summary: Ruby wrapper for the Patch API
203
205
  test_files:
204
- - spec/api/preferences_api_spec.rb
205
206
  - spec/api/orders_api_spec.rb
206
- - spec/api/estimates_api_spec.rb
207
207
  - spec/api/projects_api_spec.rb
208
+ - spec/api/preferences_api_spec.rb
209
+ - spec/api/estimates_api_spec.rb
208
210
  - spec/api_client_spec.rb
209
211
  - spec/configuration_spec.rb
210
212
  - spec/constants.rb
211
- - spec/factories/preference_responses.rb
212
- - spec/factories/meta_index_objects.rb
213
- - spec/factories/preference_list_responses.rb
214
- - spec/factories/allocations.rb
215
- - spec/factories/project_list_responses.rb
216
- - spec/factories/projects.rb
217
- - spec/factories/error_responses.rb
218
- - spec/factories/create_mass_estimate_requests.rb
219
- - spec/factories/orders.rb
220
213
  - spec/factories/preferences.rb
221
- - spec/factories/create_preference_requests.rb
222
214
  - spec/factories/create_order_requests.rb
223
- - spec/factories/project_responses.rb
224
- - spec/factories/estimate_list_responses.rb
225
215
  - spec/factories/order_list_responses.rb
216
+ - spec/factories/projects.rb
217
+ - spec/factories/estimate_list_responses.rb
218
+ - spec/factories/create_preference_requests.rb
219
+ - spec/factories/preference_responses.rb
220
+ - spec/factories/error_responses.rb
226
221
  - spec/factories/estimates.rb
227
222
  - spec/factories/order_responses.rb
223
+ - spec/factories/create_mass_estimate_requests.rb
224
+ - spec/factories/preference_list_responses.rb
228
225
  - spec/factories/estimate_responses.rb
229
- - spec/integration/.preferences_spec.rb.un~
230
- - spec/integration/estimates_spec.rb
231
- - spec/integration/.orders_spec.rb.un~
226
+ - spec/factories/meta_index_objects.rb
227
+ - spec/factories/project_responses.rb
228
+ - spec/factories/orders.rb
229
+ - spec/factories/project_list_responses.rb
230
+ - spec/factories/allocations.rb
232
231
  - spec/integration/projects_spec.rb
233
- - spec/integration/.estimates_spec.rb.un~
234
232
  - spec/integration/preferences_spec.rb
233
+ - spec/integration/estimates_spec.rb
235
234
  - spec/integration/orders_spec.rb
236
- - spec/integration/.projects_spec.rb.un~
237
235
  - spec/models/error_response_spec.rb
238
- - spec/models/estimate_response_spec.rb
239
- - spec/models/project_spec.rb
240
- - spec/models/create_preference_request_spec.rb
241
- - spec/models/order_response_spec.rb
242
- - spec/models/preference_spec.rb
236
+ - spec/models/create_order_request_spec.rb
237
+ - spec/models/create_mass_estimate_request_spec.rb
238
+ - spec/models/preference_list_response_spec.rb
239
+ - spec/models/project_response_spec.rb
240
+ - spec/models/estimate_spec.rb
243
241
  - spec/models/project_list_response_spec.rb
242
+ - spec/models/preference_spec.rb
243
+ - spec/models/order_response_spec.rb
244
244
  - spec/models/estimate_list_response_spec.rb
245
- - spec/models/preference_list_response_spec.rb
245
+ - spec/models/order_list_response_spec.rb
246
+ - spec/models/create_preference_request_spec.rb
246
247
  - spec/models/meta_index_object_spec.rb
247
- - spec/models/create_order_request_spec.rb
248
248
  - spec/models/order_spec.rb
249
249
  - spec/models/preference_response_spec.rb
250
- - spec/models/project_response_spec.rb
251
- - spec/models/estimate_spec.rb
250
+ - spec/models/estimate_response_spec.rb
251
+ - spec/models/project_spec.rb
252
252
  - spec/models/allocation_spec.rb
253
- - spec/models/order_list_response_spec.rb
254
- - spec/models/create_mass_estimate_request_spec.rb
255
253
  - spec/patch_ruby_spec.rb
256
254
  - spec/spec_helper.rb
257
255
  - spec/support/shared/generated_classes.rb