cropio-ruby 0.14 → 0.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a3694b3e09b638eebec939c746a64cd3fcd7e1fb
4
- data.tar.gz: 5cfbdf78dc6a00aa6ba97fe6a2389282c3b7faac
2
+ SHA256:
3
+ metadata.gz: 5ec5f988580a17f1fc412221ce8aaec1ebb0317a67f45d48f662f0c1061cec63
4
+ data.tar.gz: 3f74667bf71cfaa7cfaa818c3e40f8faac0d14042aacc8067b3ccc3ce5d4b32a
5
5
  SHA512:
6
- metadata.gz: 2f4474261d36a9262bc181de3bceecb895fac78d2ecf69bacb3e1834bff04472394c21039f718848abfa450dd8a501c34ce924815d2ca567599d4a4445d4e7fa
7
- data.tar.gz: 69c3285b94237ded8f825f795a22876ceebd0c5c3e408a18f99f3f7767e71469719a97b64ecd68d537e070eb1a6cb0b358ea903c4df73cbd98a99d0957077d9e
6
+ metadata.gz: ad7faf65ddcd80bcf6825f38f3934f845e33b30d5c4d1815f08e77431463d5856895f7878bb86aafdd5c0cacdc8bd1cad5cc8bd757d4b38df7dbf1c18731471d
7
+ data.tar.gz: 4b2e7d8f1574c8c8d751df3e00f393c74a68e97737bfbdee7f301b290fb849c6164c79af6fba4553a5800beacab3d8d24390d9b1f324a59d62d236f26fd21619
Binary file
@@ -27,7 +27,7 @@ STR
27
27
  spec.license = 'MIT'
28
28
 
29
29
  spec.add_dependency 'json'
30
- spec.add_dependency 'rest-client'
30
+ spec.add_dependency 'rest-client', '~>2.1.0rc1'
31
31
 
32
32
  spec.add_development_dependency 'bundler', '~> 1.9'
33
33
  spec.add_development_dependency 'rake', '~> 10.0'
@@ -45,7 +45,24 @@ require_relative './resources/automatic_alert'
45
45
  require_relative './resources/photo'
46
46
  require_relative './resources/soil_test'
47
47
  require_relative './resources/soil_test_sample'
48
-
48
+ require_relative './resources/maintenance_plan'
49
+ require_relative './resources/maintenance_plan_row'
50
+ require_relative './resources/maintenance_plan_row_spare_part_mapping_item'
51
+ require_relative './resources/maintenance_record'
52
+ require_relative './resources/maintenance_record_row'
53
+ require_relative './resources/maintenance_record_row_spare_part_mapping_item'
54
+ require_relative './resources/maintenance_type'
55
+ require_relative './resources/maintenance_type_group'
56
+ require_relative './resources/spare_part'
57
+ require_relative './resources/spare_part_manufacturer'
58
+ require_relative './resources/counterparty'
59
+ require_relative './resources/field_shape_land_parcel_mapping_item'
60
+ require_relative './resources/land_document'
61
+ require_relative './resources/land_document_land_parcel_mapping_item'
62
+ require_relative './resources/land_parcel'
63
+ require_relative './resources/protected_document'
64
+ require_relative './resources/productivity_estimate_history'
65
+ require_relative './resources/fuel_hourly_data_item'
49
66
 
50
67
  module Cropio
51
68
  module Resources
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class Counterparty < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class FieldShapeLandParcelMappingItem < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class FuelHourlyDataItem < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class LandDocument < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class LandDocumentLandParcelMappingItem < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class LandParcel < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenancePlan < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenancePlanRow < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenancePlanRowSparePartMappingItem < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenanceRecord < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenanceRecordRow < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenanceRecordRowSparePartMappingItem < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenanceType < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class MaintenanceTypeGroup < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class ProductivityEstimateHistory < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class ProtectedDocument < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class SparePart < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cropio
4
+ module Resources
5
+ class SparePartManufacturer < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module Cropio
2
- VERSION = '0.14'.freeze
2
+ VERSION = '0.19'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cropio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.14'
4
+ version: '0.19'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Vernidub
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-12 00:00:00.000000000 Z
11
+ date: 2020-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: rest-client
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 2.1.0rc1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: 2.1.0rc1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +113,7 @@ files:
113
113
  - bin/console
114
114
  - bin/login
115
115
  - bin/setup
116
+ - cropio-ruby-0.18.gem
116
117
  - cropio-ruby.gemspec
117
118
  - lib/cropio.rb
118
119
  - lib/cropio/connection.rb
@@ -136,6 +137,7 @@ files:
136
137
  - lib/cropio/resources/automatic_alert.rb
137
138
  - lib/cropio/resources/avatar.rb
138
139
  - lib/cropio/resources/chemical.rb
140
+ - lib/cropio/resources/counterparty.rb
139
141
  - lib/cropio/resources/crop.rb
140
142
  - lib/cropio/resources/fertilizer.rb
141
143
  - lib/cropio/resources/field.rb
@@ -143,6 +145,8 @@ files:
143
145
  - lib/cropio/resources/field_scout_report.rb
144
146
  - lib/cropio/resources/field_scout_report_threat_mapping_item.rb
145
147
  - lib/cropio/resources/field_shape.rb
148
+ - lib/cropio/resources/field_shape_land_parcel_mapping_item.rb
149
+ - lib/cropio/resources/fuel_hourly_data_item.rb
146
150
  - lib/cropio/resources/group_folder.rb
147
151
  - lib/cropio/resources/harvest_weighing.rb
148
152
  - lib/cropio/resources/historical_value.rb
@@ -150,6 +154,9 @@ files:
150
154
  - lib/cropio/resources/implement.rb
151
155
  - lib/cropio/resources/implement_region_mapping_item.rb
152
156
  - lib/cropio/resources/inventory_history_item.rb
157
+ - lib/cropio/resources/land_document.rb
158
+ - lib/cropio/resources/land_document_land_parcel_mapping_item.rb
159
+ - lib/cropio/resources/land_parcel.rb
153
160
  - lib/cropio/resources/machine.rb
154
161
  - lib/cropio/resources/machine_group.rb
155
162
  - lib/cropio/resources/machine_region.rb
@@ -157,13 +164,25 @@ files:
157
164
  - lib/cropio/resources/machine_task.rb
158
165
  - lib/cropio/resources/machine_task_agro_operation_mapping_item.rb
159
166
  - lib/cropio/resources/machine_task_field_mapping_item.rb
167
+ - lib/cropio/resources/maintenance_plan.rb
168
+ - lib/cropio/resources/maintenance_plan_row.rb
169
+ - lib/cropio/resources/maintenance_plan_row_spare_part_mapping_item.rb
170
+ - lib/cropio/resources/maintenance_record.rb
171
+ - lib/cropio/resources/maintenance_record_row.rb
172
+ - lib/cropio/resources/maintenance_record_row_spare_part_mapping_item.rb
173
+ - lib/cropio/resources/maintenance_type.rb
174
+ - lib/cropio/resources/maintenance_type_group.rb
160
175
  - lib/cropio/resources/note.rb
161
176
  - lib/cropio/resources/photo.rb
162
177
  - lib/cropio/resources/plant_threat.rb
178
+ - lib/cropio/resources/productivity_estimate_history.rb
179
+ - lib/cropio/resources/protected_document.rb
163
180
  - lib/cropio/resources/satellite_image.rb
164
181
  - lib/cropio/resources/seed.rb
165
182
  - lib/cropio/resources/soil_test.rb
166
183
  - lib/cropio/resources/soil_test_sample.rb
184
+ - lib/cropio/resources/spare_part.rb
185
+ - lib/cropio/resources/spare_part_manufacturer.rb
167
186
  - lib/cropio/resources/user.rb
168
187
  - lib/cropio/resources/user_role.rb
169
188
  - lib/cropio/resources/user_role_assignment.rb
@@ -193,8 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
193
212
  - !ruby/object:Gem::Version
194
213
  version: '0'
195
214
  requirements: []
196
- rubyforge_project:
197
- rubygems_version: 2.5.1
215
+ rubygems_version: 3.0.3
198
216
  signing_key:
199
217
  specification_version: 4
200
218
  summary: Cropio API bindings for Ruby