sibu 1.0.15 → 1.0.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/app/helpers/sibu/pages_helper.rb +2 -2
- data/lib/sibu/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b93f3e95737adee12da11b924e22c4f04fbf32bb
|
4
|
+
data.tar.gz: 2e2f83ffda9d26834d8900c8a6b010a18af69a59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4feb32b7552393945dbf01283555d8a2037d076c71dbc71fbc4a5806a35a132190043b87ad6e95dd2be4fdad6498bc6ba204f9b683309fea3e097c08a1cd281
|
7
|
+
data.tar.gz: 5155224fcf65a3e519ea91f2fbe87e52b8185f86dbefb459abe623902266b9959ed72eac609ecf41e21c081b895359209a4c992ef6f9d02f0c0efcfe4828653a
|
@@ -136,13 +136,13 @@ module Sibu
|
|
136
136
|
end
|
137
137
|
|
138
138
|
def push_section_ids(*section_ids)
|
139
|
-
Rails.logger.debug "push section ids #{section_ids}"
|
139
|
+
# Rails.logger.debug "push section ids #{section_ids}"
|
140
140
|
instance_variable_set("@sb_section", (instance_variable_get("@sb_section") || []) + section_ids)
|
141
141
|
end
|
142
142
|
|
143
143
|
def pop_section_id
|
144
144
|
instance_variable_set("@sb_section", instance_variable_get("@sb_section")[0..-2])
|
145
|
-
Rails.logger.debug "popped section - now #{instance_variable_get("@sb_section")}"
|
145
|
+
# Rails.logger.debug "popped section - now #{instance_variable_get("@sb_section")}"
|
146
146
|
end
|
147
147
|
|
148
148
|
def img(elt, opts = {})
|
data/lib/sibu/version.rb
CHANGED