spark-component 1.0.0.pre.alpha.7 → 1.0.0.pre.alpha.8
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/Gemfile.lock +1 -1
- data/lib/spark/component/element.rb +1 -1
- data/lib/spark/component/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: 30f43fa5459182815343dfac5c0d8b7b67765d922325864141b694b839931a13
|
4
|
+
data.tar.gz: '08cdfc3877e2294a8a9c7f619868435426025b6cd0e6617d7c5752afa48316e6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fb9e863301e1908df95f1f804efccd05cffee3b898a443fde13848ceed6f9dac249eda8e7651001d41715daa8ce5960e63ccfd1a6e37a785cdbdec6697e366d
|
7
|
+
data.tar.gz: ed5f58d02382df1926c924501b1541c1ffd292370c39b00660cbc81e9d9effd4a415add49a7ef2890314e6fb096fd997465391366c0e01e037d2cb9e5065129b
|
data/Gemfile.lock
CHANGED
@@ -228,7 +228,7 @@ module Spark
|
|
228
228
|
# Prevent an element method from overwriting an existing method
|
229
229
|
def define_method_if_able(method_name, &block)
|
230
230
|
# Protect instance methods which are crucial to components and elements
|
231
|
-
methods = [self, Element, Attribute
|
231
|
+
methods = [self, Element, Attribute]
|
232
232
|
methods << Integration.base_class if defined? Spark::Component::Integration
|
233
233
|
methods.map! { |c| c.instance_methods(false) }
|
234
234
|
|