cropio-ruby 0.15 → 0.16

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a82588705f74340d226d29c7ca01d130157c0dbe497616a7764427bf3420413
4
- data.tar.gz: 2199f6964b04c7d9fcc14a18a187fef320bad2344ef8904e1733a0f5e5632832
3
+ metadata.gz: c683d6641c3ac442f0ee38bff30617d43017eb3164662262382631578b1fed03
4
+ data.tar.gz: 7b9f418f5798fd0312f10b6d7a0dc580efe4071d84fbada4140a3c169e5461ff
5
5
  SHA512:
6
- metadata.gz: 3d1e0a38d56605668920912a7ff792d1c3d566d9c2ad2b8701db0008ee0bd22f3e8046ad927354e84bea5ec0ab914e3d4dc83a9d925f80c5b1dd14e59df7e73e
7
- data.tar.gz: 314875a8ef5624421b297609fbfb2bb2cb34a66e3e5b5c193e26813e397687d9e3deda3cf3b9d64b730f9429e04643ba3a53b0d35845d976f58f3924eac4fc88
6
+ metadata.gz: d44f8a9dec5b88545a4024544fa730171a2132e90d6cc9cf95950dd17d3f66adf785c31fcbc035e71249ba13d0e9720f57493be9b69fefa90883c6fd7c3b56ff
7
+ data.tar.gz: 919218f9db0cdf2fd5797420c76da265a11033ad68732065d3935424ec54764b3aba2a94bf5cc184293dd9bdc529e83141b6f44d4103402c2bf5f3d83a898987
@@ -55,6 +55,12 @@ require_relative './resources/maintenance_type'
55
55
  require_relative './resources/maintenance_type_group'
56
56
  require_relative './resources/spare_part'
57
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'
58
64
 
59
65
 
60
66
  module Cropio
@@ -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 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 ProtectedDocument < Cropio::Resource::Base
6
+ end
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module Cropio
2
- VERSION = '0.15'.freeze
2
+ VERSION = '0.16'.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.15'
4
+ version: '0.16'
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-28 00:00:00.000000000 Z
11
+ date: 2019-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -136,6 +136,7 @@ files:
136
136
  - lib/cropio/resources/automatic_alert.rb
137
137
  - lib/cropio/resources/avatar.rb
138
138
  - lib/cropio/resources/chemical.rb
139
+ - lib/cropio/resources/counterparty.rb
139
140
  - lib/cropio/resources/crop.rb
140
141
  - lib/cropio/resources/fertilizer.rb
141
142
  - lib/cropio/resources/field.rb
@@ -143,6 +144,7 @@ files:
143
144
  - lib/cropio/resources/field_scout_report.rb
144
145
  - lib/cropio/resources/field_scout_report_threat_mapping_item.rb
145
146
  - lib/cropio/resources/field_shape.rb
147
+ - lib/cropio/resources/field_shape_land_parcel_mapping_item.rb
146
148
  - lib/cropio/resources/group_folder.rb
147
149
  - lib/cropio/resources/harvest_weighing.rb
148
150
  - lib/cropio/resources/historical_value.rb
@@ -150,6 +152,9 @@ files:
150
152
  - lib/cropio/resources/implement.rb
151
153
  - lib/cropio/resources/implement_region_mapping_item.rb
152
154
  - lib/cropio/resources/inventory_history_item.rb
155
+ - lib/cropio/resources/land_document.rb
156
+ - lib/cropio/resources/land_document_land_parcel_mapping_item.rb
157
+ - lib/cropio/resources/land_parcel.rb
153
158
  - lib/cropio/resources/machine.rb
154
159
  - lib/cropio/resources/machine_group.rb
155
160
  - lib/cropio/resources/machine_region.rb
@@ -168,6 +173,7 @@ files:
168
173
  - lib/cropio/resources/note.rb
169
174
  - lib/cropio/resources/photo.rb
170
175
  - lib/cropio/resources/plant_threat.rb
176
+ - lib/cropio/resources/protected_document.rb
171
177
  - lib/cropio/resources/satellite_image.rb
172
178
  - lib/cropio/resources/seed.rb
173
179
  - lib/cropio/resources/soil_test.rb