luca 0.6.6 → 0.6.7
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/lib/luca/rails/version.rb
CHANGED
data/src/core/collection.coffee
CHANGED
@@ -136,7 +136,7 @@ Luca.Collection = (Backbone.QueryCollection || Backbone.Collection).extend
|
|
136
136
|
# You can apply params to a collection, so that any upcoming requests
|
137
137
|
# made to the REST API are made with the key values specified
|
138
138
|
applyParams: (params)->
|
139
|
-
@base_params ||= Luca.Collection.baseParams()
|
139
|
+
@base_params ||= _( Luca.Collection.baseParams() ).clone()
|
140
140
|
_.extend @base_params, params
|
141
141
|
|
142
142
|
# Collection Manager Registry
|
data/src/framework.coffee
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
_.mixin(_.string);
|
4
4
|
|
5
5
|
window.Luca = {
|
6
|
-
VERSION: "0.6.
|
6
|
+
VERSION: "0.6.7",
|
7
7
|
core: {},
|
8
8
|
containers: {},
|
9
9
|
components: {},
|
@@ -541,7 +541,7 @@
|
|
541
541
|
}));
|
542
542
|
},
|
543
543
|
applyParams: function(params) {
|
544
|
-
this.base_params || (this.base_params = Luca.Collection.baseParams());
|
544
|
+
this.base_params || (this.base_params = _(Luca.Collection.baseParams()).clone());
|
545
545
|
return _.extend(this.base_params, params);
|
546
546
|
},
|
547
547
|
register: function(collectionManager, key, collection) {
|
@@ -3,7 +3,7 @@
|
|
3
3
|
_.mixin(_.string);
|
4
4
|
|
5
5
|
window.Luca = {
|
6
|
-
VERSION: "0.6.
|
6
|
+
VERSION: "0.6.7",
|
7
7
|
core: {},
|
8
8
|
containers: {},
|
9
9
|
components: {},
|
@@ -541,7 +541,7 @@
|
|
541
541
|
}));
|
542
542
|
},
|
543
543
|
applyParams: function(params) {
|
544
|
-
this.base_params || (this.base_params = Luca.Collection.baseParams());
|
544
|
+
this.base_params || (this.base_params = _(Luca.Collection.baseParams()).clone());
|
545
545
|
return _.extend(this.base_params, params);
|
546
546
|
},
|
547
547
|
register: function(collectionManager, key, collection) {
|
@@ -3,7 +3,7 @@
|
|
3
3
|
_.mixin(_.string);
|
4
4
|
|
5
5
|
window.Luca = {
|
6
|
-
VERSION: "0.6.
|
6
|
+
VERSION: "0.6.7",
|
7
7
|
core: {},
|
8
8
|
containers: {},
|
9
9
|
components: {},
|
@@ -541,7 +541,7 @@
|
|
541
541
|
}));
|
542
542
|
},
|
543
543
|
applyParams: function(params) {
|
544
|
-
this.base_params || (this.base_params = Luca.Collection.baseParams());
|
544
|
+
this.base_params || (this.base_params = _(Luca.Collection.baseParams()).clone());
|
545
545
|
return _.extend(this.base_params, params);
|
546
546
|
},
|
547
547
|
register: function(collectionManager, key, collection) {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: luca
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-03-
|
12
|
+
date: 2012-03-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
@@ -343,9 +343,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
343
343
|
- - ! '>='
|
344
344
|
- !ruby/object:Gem::Version
|
345
345
|
version: '0'
|
346
|
-
segments:
|
347
|
-
- 0
|
348
|
-
hash: 2607175712121579529
|
349
346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
350
347
|
none: false
|
351
348
|
requirements:
|