ecoportal-api-v2 0.8.15 → 0.8.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 +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/ecoportal/api/v2/page/section.rb +1 -1
- data/lib/ecoportal/api/v2_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4655b94325aaad222aabf7ec6376aa4e0be39f03db94338ceab8fcd77dca229b
|
|
4
|
+
data.tar.gz: af7d89a41346d634dce2acea3c689e0f823b9ec85f68d662807939c2222e843d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a749ce7f98f2765c133d662c4257ba7f3bac24fb2b35a369f8e060dc97ff5ccd13a5c91be65fb004f3de31c98b3559eb4f91fdf6fb15e71d178004e66c407ac8
|
|
7
|
+
data.tar.gz: 454fc8004933d15357f0e4dc0e5d7e923b42876bb049cad72ea58a8b32a0b3246a3316c8fad05df22d16fa4c87296a9e8bdbda0932a73f7cad8e16ae4b386a41
|
data/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [0.8.
|
|
4
|
+
## [0.8.16] - 2021-09-xx
|
|
5
5
|
|
|
6
6
|
### Added
|
|
7
7
|
### Changed
|
|
8
8
|
### Fixed
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [0.8.15] - 2021-09-29
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Typo in `Section#component?`
|
|
15
|
+
|
|
11
16
|
## [0.8.14] - 2021-09-28
|
|
12
17
|
|
|
13
18
|
### Added
|
|
@@ -40,7 +40,7 @@ module Ecoportal
|
|
|
40
40
|
|
|
41
41
|
# @return [Array<Ecoportal::API::V2::Page::Stage>] the stage(s) this section belongs to.
|
|
42
42
|
def stages
|
|
43
|
-
ooze.stages.select {|stg| stg.
|
|
43
|
+
ooze.stages.select {|stg| stg.section?(self)}
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
# @return [Boolean] whether or not the section appears in an ooze instance
|