cropio-ruby 0.15 → 0.20
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 +4 -4
- data/cropio-ruby-0.18.gem +0 -0
- data/cropio-ruby-0.19.gem +0 -0
- data/cropio-ruby.gemspec +1 -1
- data/lib/cropio/resources.rb +10 -1
- data/lib/cropio/resources/counterparty.rb +8 -0
- data/lib/cropio/resources/field_shape_land_parcel_mapping_item.rb +8 -0
- data/lib/cropio/resources/fuel_hourly_data_item.rb +8 -0
- data/lib/cropio/resources/land_document.rb +8 -0
- data/lib/cropio/resources/land_document_land_parcel_mapping_item.rb +8 -0
- data/lib/cropio/resources/land_parcel.rb +8 -0
- data/lib/cropio/resources/productivity_estimate.rb +8 -0
- data/lib/cropio/resources/productivity_estimate_history.rb +8 -0
- data/lib/cropio/resources/productivity_estimate_peer.rb +8 -0
- data/lib/cropio/resources/protected_document.rb +8 -0
- data/lib/cropio/version.rb +1 -1
- metadata +18 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a20b1892eee7c583544a099873c23b21d0a3d292f3cc85e22c0c6e4bccbd7e63
|
|
4
|
+
data.tar.gz: adf3177b00cfe063aae9552d846c6ceb1e18bda4da319cc7a10fcd5859106fd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82c1ead15e22f999cbaf74d36df2f37c7d333d327cab188113c32a2d7245cb574441f4d9e0553de3344dc4630278f2b2932607048d678aeae057a03aec8f05b8
|
|
7
|
+
data.tar.gz: fb992dc5971306f34ab89df2f1eee169828a74763ffb76bd3722567ff5d040095a67916585e7593a3a9a6d0476d2b6840f32197cfc5447898055c4771e185f48
|
|
Binary file
|
|
Binary file
|
data/cropio-ruby.gemspec
CHANGED
data/lib/cropio/resources.rb
CHANGED
|
@@ -55,7 +55,16 @@ 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
|
-
|
|
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'
|
|
66
|
+
require_relative './resources/productivity_estimate'
|
|
67
|
+
require_relative './resources/productivity_estimate_peer'
|
|
59
68
|
|
|
60
69
|
module Cropio
|
|
61
70
|
module Resources
|
data/lib/cropio/version.rb
CHANGED
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.
|
|
4
|
+
version: '0.20'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Vernidub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-09-16 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:
|
|
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:
|
|
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,8 @@ files:
|
|
|
113
113
|
- bin/console
|
|
114
114
|
- bin/login
|
|
115
115
|
- bin/setup
|
|
116
|
+
- cropio-ruby-0.18.gem
|
|
117
|
+
- cropio-ruby-0.19.gem
|
|
116
118
|
- cropio-ruby.gemspec
|
|
117
119
|
- lib/cropio.rb
|
|
118
120
|
- lib/cropio/connection.rb
|
|
@@ -136,6 +138,7 @@ files:
|
|
|
136
138
|
- lib/cropio/resources/automatic_alert.rb
|
|
137
139
|
- lib/cropio/resources/avatar.rb
|
|
138
140
|
- lib/cropio/resources/chemical.rb
|
|
141
|
+
- lib/cropio/resources/counterparty.rb
|
|
139
142
|
- lib/cropio/resources/crop.rb
|
|
140
143
|
- lib/cropio/resources/fertilizer.rb
|
|
141
144
|
- lib/cropio/resources/field.rb
|
|
@@ -143,6 +146,8 @@ files:
|
|
|
143
146
|
- lib/cropio/resources/field_scout_report.rb
|
|
144
147
|
- lib/cropio/resources/field_scout_report_threat_mapping_item.rb
|
|
145
148
|
- lib/cropio/resources/field_shape.rb
|
|
149
|
+
- lib/cropio/resources/field_shape_land_parcel_mapping_item.rb
|
|
150
|
+
- lib/cropio/resources/fuel_hourly_data_item.rb
|
|
146
151
|
- lib/cropio/resources/group_folder.rb
|
|
147
152
|
- lib/cropio/resources/harvest_weighing.rb
|
|
148
153
|
- lib/cropio/resources/historical_value.rb
|
|
@@ -150,6 +155,9 @@ files:
|
|
|
150
155
|
- lib/cropio/resources/implement.rb
|
|
151
156
|
- lib/cropio/resources/implement_region_mapping_item.rb
|
|
152
157
|
- lib/cropio/resources/inventory_history_item.rb
|
|
158
|
+
- lib/cropio/resources/land_document.rb
|
|
159
|
+
- lib/cropio/resources/land_document_land_parcel_mapping_item.rb
|
|
160
|
+
- lib/cropio/resources/land_parcel.rb
|
|
153
161
|
- lib/cropio/resources/machine.rb
|
|
154
162
|
- lib/cropio/resources/machine_group.rb
|
|
155
163
|
- lib/cropio/resources/machine_region.rb
|
|
@@ -168,6 +176,10 @@ files:
|
|
|
168
176
|
- lib/cropio/resources/note.rb
|
|
169
177
|
- lib/cropio/resources/photo.rb
|
|
170
178
|
- lib/cropio/resources/plant_threat.rb
|
|
179
|
+
- lib/cropio/resources/productivity_estimate.rb
|
|
180
|
+
- lib/cropio/resources/productivity_estimate_history.rb
|
|
181
|
+
- lib/cropio/resources/productivity_estimate_peer.rb
|
|
182
|
+
- lib/cropio/resources/protected_document.rb
|
|
171
183
|
- lib/cropio/resources/satellite_image.rb
|
|
172
184
|
- lib/cropio/resources/seed.rb
|
|
173
185
|
- lib/cropio/resources/soil_test.rb
|