coolerator.vision 0.2.3 → 0.2.4
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.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.4
|
data/coolerator.vision.gemspec
CHANGED
@@ -38,11 +38,11 @@
|
|
38
38
|
$.each(extension.instance.methods, function(name, fn) {
|
39
39
|
if(self.instance.methods[name]) {
|
40
40
|
var superb = self.instance.methods[name];
|
41
|
-
function
|
41
|
+
function sup() {
|
42
42
|
var args = $.makeArray(arguments);
|
43
43
|
superb.apply(args.shift(), args);
|
44
44
|
}
|
45
|
-
$.extend(fn, { super :
|
45
|
+
$.extend(fn, { 'super' : sup });
|
46
46
|
}
|
47
47
|
});
|
48
48
|
|
@@ -7,7 +7,7 @@ Screw.Unit(function(c) { with(c) {
|
|
7
7
|
});
|
8
8
|
|
9
9
|
context("when created with a configuration object", function() {
|
10
|
-
context("when the configuration
|
10
|
+
context("when the configuration :label exists", function() {
|
11
11
|
var filter = new Coolerator.Filter({
|
12
12
|
label : 'so cool!',
|
13
13
|
scope : 'everywhere'
|