cropio-ruby 0.34 → 0.36
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/lib/cropio/resources/growth_stage_structure_mapping_item.rb +8 -0
- data/lib/cropio/resources/scout_report_template.rb +8 -0
- data/lib/cropio/resources/scouting_task_point.rb +8 -0
- data/lib/cropio/resources.rb +3 -0
- data/lib/cropio/version.rb +1 -1
- metadata +5 -3
- data/cropio-ruby-0.33.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '038cdd13a653cb3f83cb2cc22151657597b232951687e3028aaf507421eb80cb'
|
|
4
|
+
data.tar.gz: 74af3030dc45b306b63fd9e4ee8e993d9597268fbf4e344dfb06dd6ca9baf031
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e14c0cf0082ca530fe4c475796bc8af0abc29205c2d5f325bdd48fdd03ebb1b32d1298f7cc7f88393f0643a6e69f87d5f44a6ffb16f5e12af6ca6eeabd3ce90d
|
|
7
|
+
data.tar.gz: 1b2464974735201c9aee1b1aa3d195cc55c47c0c3e8dda1447760d461e8108fc8270f88ce78ff1acdf8007269b2fe4befdcdc207d6ce201c2a3d4a3c38a75e01
|
data/lib/cropio/resources.rb
CHANGED
|
@@ -72,15 +72,18 @@ require_relative './resources/fuel_pump'
|
|
|
72
72
|
require_relative './resources/fuel_movement'
|
|
73
73
|
require_relative './resources/weather_history_item'
|
|
74
74
|
require_relative './resources/scouting_task'
|
|
75
|
+
require_relative './resources/scouting_task_point'
|
|
75
76
|
require_relative './resources/scout_report_point'
|
|
76
77
|
require_relative './resources/scout_report_point_issue'
|
|
77
78
|
require_relative './resources/scout_report_point_issue_plant_part'
|
|
78
79
|
require_relative './resources/scout_report_point_measurement'
|
|
79
80
|
require_relative './resources/scout_report_point_growth_stage_structure'
|
|
81
|
+
require_relative './resources/scout_report_template'
|
|
80
82
|
require_relative './resources/growth_scale'
|
|
81
83
|
require_relative './resources/growth_stage'
|
|
82
84
|
require_relative './resources/growth_stage_group'
|
|
83
85
|
require_relative './resources/growth_stages_prediction'
|
|
86
|
+
require_relative './resources/growth_stage_structure_mapping_item'
|
|
84
87
|
|
|
85
88
|
module Cropio
|
|
86
89
|
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.36'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Vernidub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -114,7 +114,6 @@ files:
|
|
|
114
114
|
- bin/console
|
|
115
115
|
- bin/login
|
|
116
116
|
- bin/setup
|
|
117
|
-
- cropio-ruby-0.33.gem
|
|
118
117
|
- cropio-ruby.gemspec
|
|
119
118
|
- lib/cropio.rb
|
|
120
119
|
- lib/cropio/connection.rb
|
|
@@ -157,6 +156,7 @@ files:
|
|
|
157
156
|
- lib/cropio/resources/growth_scale.rb
|
|
158
157
|
- lib/cropio/resources/growth_stage.rb
|
|
159
158
|
- lib/cropio/resources/growth_stage_group.rb
|
|
159
|
+
- lib/cropio/resources/growth_stage_structure_mapping_item.rb
|
|
160
160
|
- lib/cropio/resources/growth_stages_prediction.rb
|
|
161
161
|
- lib/cropio/resources/harvest_weighing.rb
|
|
162
162
|
- lib/cropio/resources/historical_value.rb
|
|
@@ -195,7 +195,9 @@ files:
|
|
|
195
195
|
- lib/cropio/resources/scout_report_point_issue.rb
|
|
196
196
|
- lib/cropio/resources/scout_report_point_issue_plant_part.rb
|
|
197
197
|
- lib/cropio/resources/scout_report_point_measurement.rb
|
|
198
|
+
- lib/cropio/resources/scout_report_template.rb
|
|
198
199
|
- lib/cropio/resources/scouting_task.rb
|
|
200
|
+
- lib/cropio/resources/scouting_task_point.rb
|
|
199
201
|
- lib/cropio/resources/seed.rb
|
|
200
202
|
- lib/cropio/resources/soil_test.rb
|
|
201
203
|
- lib/cropio/resources/soil_test_sample.rb
|
data/cropio-ruby-0.33.gem
DELETED
|
Binary file
|