flora 1.0.0 → 1.0.1
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/.document +2 -0
- data/lib/flora/lilac.rb +9 -0
- data/lib/flora/project/blueprint/has_layout.rb +3 -0
- data/lib/flora/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffea457870b0ae28e03a55fe032421257ea9eceb19ff282727c01b888a24c05b
|
|
4
|
+
data.tar.gz: 91d44f3cefd76ee01cbc834163d075564bf5ea9df5adb1487d143e089868d07a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2fb5f500e39eb1f4f143445bc460a0a501a1bfca8459c8eb0d50ddaee3d66882c731fb823ffc4b3dc2717b5186df6be9d42810cb0d0293497434f06d171c9ec
|
|
7
|
+
data.tar.gz: bf5d0b9c5d00e2bff223d3aec48b1225e397adea87eac7a780903a1d337e275efefe09a15323508f28c83b19adc6a303b4a6d504adac62663b5067e1b7f5b43c
|
data/.document
ADDED
data/lib/flora/lilac.rb
CHANGED
|
@@ -44,6 +44,9 @@ module Flora::Project::Blueprint::HasLayout
|
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
|
|
47
|
+
# This exists because the eval'd code will call yield, and yield will always
|
|
48
|
+
# grab the current block passed into the current function. We need that to be
|
|
49
|
+
# a specific proc, not the one passed into render_internal!
|
|
47
50
|
def eval_with_block(str, filename, &block)
|
|
48
51
|
eval(str, binding, filename)
|
|
49
52
|
end
|
data/lib/flora/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flora
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Vladimiroff
|
|
@@ -142,6 +142,7 @@ executables:
|
|
|
142
142
|
extensions: []
|
|
143
143
|
extra_rdoc_files: []
|
|
144
144
|
files:
|
|
145
|
+
- ".document"
|
|
145
146
|
- ".woodpecker.yml"
|
|
146
147
|
- LICENSE.txt
|
|
147
148
|
- README.md
|