cropio-ruby 0.15 → 0.20

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
2
  SHA256:
3
- metadata.gz: 8a82588705f74340d226d29c7ca01d130157c0dbe497616a7764427bf3420413
4
- data.tar.gz: 2199f6964b04c7d9fcc14a18a187fef320bad2344ef8904e1733a0f5e5632832
3
+ metadata.gz: a20b1892eee7c583544a099873c23b21d0a3d292f3cc85e22c0c6e4bccbd7e63
4
+ data.tar.gz: adf3177b00cfe063aae9552d846c6ceb1e18bda4da319cc7a10fcd5859106fd1
5
5
  SHA512:
6
- metadata.gz: 3d1e0a38d56605668920912a7ff792d1c3d566d9c2ad2b8701db0008ee0bd22f3e8046ad927354e84bea5ec0ab914e3d4dc83a9d925f80c5b1dd14e59df7e73e
7
- data.tar.gz: 314875a8ef5624421b297609fbfb2bb2cb34a66e3e5b5c193e26813e397687d9e3deda3cf3b9d64b730f9429e04643ba3a53b0d35845d976f58f3924eac4fc88
6
+ metadata.gz: 82c1ead15e22f999cbaf74d36df2f37c7d333d327cab188113c32a2d7245cb574441f4d9e0553de3344dc4630278f2b2932607048d678aeae057a03aec8f05b8
7
+ data.tar.gz: fb992dc5971306f34ab89df2f1eee169828a74763ffb76bd3722567ff5d040095a67916585e7593a3a9a6d0476d2b6840f32197cfc5447898055c4771e185f48
Binary file
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'
@@ -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
@@ -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 ProductivityEstimate < 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 ProductivityEstimatePeer < 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.20'.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.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: 2019-03-28 00:00:00.000000000 Z
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: '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,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