cropio-ruby 0.14 → 0.15

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: 8a82588705f74340d226d29c7ca01d130157c0dbe497616a7764427bf3420413
4
+ data.tar.gz: 2199f6964b04c7d9fcc14a18a187fef320bad2344ef8904e1733a0f5e5632832
5
5
  SHA512:
6
- metadata.gz: 2f4474261d36a9262bc181de3bceecb895fac78d2ecf69bacb3e1834bff04472394c21039f718848abfa450dd8a501c34ce924815d2ca567599d4a4445d4e7fa
7
- data.tar.gz: 69c3285b94237ded8f825f795a22876ceebd0c5c3e408a18f99f3f7767e71469719a97b64ecd68d537e070eb1a6cb0b358ea903c4df73cbd98a99d0957077d9e
6
+ metadata.gz: 3d1e0a38d56605668920912a7ff792d1c3d566d9c2ad2b8701db0008ee0bd22f3e8046ad927354e84bea5ec0ab914e3d4dc83a9d925f80c5b1dd14e59df7e73e
7
+ data.tar.gz: 314875a8ef5624421b297609fbfb2bb2cb34a66e3e5b5c193e26813e397687d9e3deda3cf3b9d64b730f9429e04643ba3a53b0d35845d976f58f3924eac4fc88
@@ -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 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
@@ -45,6 +45,16 @@ 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
+ 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'
48
58
 
49
59
 
50
60
  module Cropio
@@ -1,3 +1,3 @@
1
1
  module Cropio
2
- VERSION = '0.14'.freeze
2
+ VERSION = '0.15'.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.15'
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: 2019-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -157,6 +157,14 @@ files:
157
157
  - lib/cropio/resources/machine_task.rb
158
158
  - lib/cropio/resources/machine_task_agro_operation_mapping_item.rb
159
159
  - lib/cropio/resources/machine_task_field_mapping_item.rb
160
+ - lib/cropio/resources/maintenance_plan.rb
161
+ - lib/cropio/resources/maintenance_plan_row.rb
162
+ - lib/cropio/resources/maintenance_plan_row_spare_part_mapping_item.rb
163
+ - lib/cropio/resources/maintenance_record.rb
164
+ - lib/cropio/resources/maintenance_record_row.rb
165
+ - lib/cropio/resources/maintenance_record_row_spare_part_mapping_item.rb
166
+ - lib/cropio/resources/maintenance_type.rb
167
+ - lib/cropio/resources/maintenance_type_group.rb
160
168
  - lib/cropio/resources/note.rb
161
169
  - lib/cropio/resources/photo.rb
162
170
  - lib/cropio/resources/plant_threat.rb
@@ -164,6 +172,8 @@ files:
164
172
  - lib/cropio/resources/seed.rb
165
173
  - lib/cropio/resources/soil_test.rb
166
174
  - lib/cropio/resources/soil_test_sample.rb
175
+ - lib/cropio/resources/spare_part.rb
176
+ - lib/cropio/resources/spare_part_manufacturer.rb
167
177
  - lib/cropio/resources/user.rb
168
178
  - lib/cropio/resources/user_role.rb
169
179
  - lib/cropio/resources/user_role_assignment.rb
@@ -193,8 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
193
203
  - !ruby/object:Gem::Version
194
204
  version: '0'
195
205
  requirements: []
196
- rubyforge_project:
197
- rubygems_version: 2.5.1
206
+ rubygems_version: 3.0.3
198
207
  signing_key:
199
208
  specification_version: 4
200
209
  summary: Cropio API bindings for Ruby