inform-runtime 1.2.0 → 1.2.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f79733e3acaea7ef29ef54048e40496a2e59f4eb3e367369cfadfc7a9ac1e7a
|
|
4
|
+
data.tar.gz: 60560e1801f0489cf40b6144adb7ec5618d0bbb265f3304ea59d1837e61bd379
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 154bb199c8b4de11899a9206abe0805b71a8a678c62dac81fbb326de36d7f2092f7b70c14702403dab7ae45752ea647fb012d941498d554d7196d9f6cd651562
|
|
7
|
+
data.tar.gz: 4000a694bde0d03cd6a88b7959f2e451fb2935cc8468330a6fbbcb8408696e30a1cde5912da28289a5a35c9027eca75c52cbb952a0d408cb64e8a30a4727573a
|
data/lib/story_teller/helpers.rb
CHANGED
|
@@ -88,22 +88,22 @@ module StoryTeller
|
|
|
88
88
|
module_function :available?
|
|
89
89
|
|
|
90
90
|
def object_class
|
|
91
|
-
current&.fetch(:object_class, nil)
|
|
91
|
+
current&.fetch(:object_class, nil)
|
|
92
92
|
end
|
|
93
93
|
module_function :object_class
|
|
94
94
|
|
|
95
95
|
def tag_class
|
|
96
|
-
current&.fetch(:tag_class, nil)
|
|
96
|
+
current&.fetch(:tag_class, nil)
|
|
97
97
|
end
|
|
98
98
|
module_function :tag_class
|
|
99
99
|
|
|
100
100
|
def link_class
|
|
101
|
-
current&.fetch(:link_class, nil)
|
|
101
|
+
current&.fetch(:link_class, nil)
|
|
102
102
|
end
|
|
103
103
|
module_function :link_class
|
|
104
104
|
|
|
105
105
|
def module_class
|
|
106
|
-
current&.fetch(:module_class, nil)
|
|
106
|
+
current&.fetch(:module_class, nil)
|
|
107
107
|
end
|
|
108
108
|
module_function :module_class
|
|
109
109
|
|
data/lib/story_teller/version.rb
CHANGED