fluxxor-rails 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fluxxor-rails/version.rb +1 -1
- data/test/dummy/log/test.log +5 -0
- data/test/dummy/tmp/cache/assets/C4E/EE0/sprockets%2F68de70436326426a3329c3b58b59b106 +0 -0
- data/test/dummy/tmp/cache/assets/DC6/C40/sprockets%2F2617ffa3fab6631cdff29bbf623e2d12 +0 -0
- data/test/dummy/tmp/cache/assets/DCC/260/sprockets%2F7c5104b0d6ae29c2ec84168e5cacf8fb +0 -0
- data/vendor/assets/javascripts/fluxxor.js +3 -2
- 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: baf5eb8c9f710990ac7903f03d77c565571dcaeb
|
4
|
+
data.tar.gz: 271fe620782c8998ca88b1be9b588aba33a42821
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36c44e21b014cfb2ae6996e9d91feaf56e661d476e50a3a9237efaa300334e3acd55e7e8c5c14e1d47bdb1dd27b0e94f2b431a79e788829c46474213048bea35
|
7
|
+
data.tar.gz: 66dc64b3856659cdf020167e15cf26db0e9ce4f7923f17e3149dcfa2ce6da4404439bd12e3948d856e03a49fe14d71d18d16c74ee1a95e29590b5582ed92ac8b
|
data/test/dummy/log/test.log
CHANGED
@@ -56,3 +56,8 @@ Compiled fluxxor.js (1ms) (pid 14381)
|
|
56
56
|
Served asset /fluxxor.js - 200 OK (7ms)
|
57
57
|
Started GET "/assets/fluxxor.js" for 127.0.0.1 at 2015-09-23 13:48:52 -0500
|
58
58
|
Served asset /fluxxor.js - 200 OK (0ms)
|
59
|
+
Started GET "/assets/fluxxor.js" for 127.0.0.1 at 2015-09-23 13:49:22 -0500
|
60
|
+
Compiled fluxxor.js (2ms) (pid 14915)
|
61
|
+
Served asset /fluxxor.js - 200 OK (11ms)
|
62
|
+
Started GET "/assets/fluxxor.js" for 127.0.0.1 at 2015-09-23 13:49:22 -0500
|
63
|
+
Served asset /fluxxor.js - 200 OK (0ms)
|
Binary file
|
Binary file
|
Binary file
|
@@ -79,7 +79,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
79
79
|
/* 1 */
|
80
80
|
/***/ function(module, exports, __webpack_require__) {
|
81
81
|
|
82
|
-
module.exports = {"name":"fluxxor","version":"1.2.
|
82
|
+
module.exports = {"name":"fluxxor","version":"1.2.2","description":"Flux architecture tools for React","repository":{"type":"git","url":"https://github.com/BinaryMuse/fluxxor.git"},"main":"index.js","scripts":{"test":"npm run jshint && mocha --recursive","jshint":"jsxhint lib/ test/","build":"./script/build-fluxxor && ./script/build-examples","preview-site":"wintersmith preview -C site","build-site":"wintersmith build -C site"},"keywords":["react","flux"],"author":"Brandon Tilley <brandon@brandontilley.com>","license":"MIT","devDependencies":{"chai":"^1.9.1","css-loader":"^0.6.12","envify":"^1.2.1","jsdom":"^0.10.5","json-loader":"^0.5.0","jsx-loader":"^0.10.2","jsxhint":"^0.4.9","less":"^1.7.0","less-loader":"^0.7.3","mocha":"^1.18.2","react":"^0.10.0","sinon":"^1.9.1","sinon-chai":"^2.5.0","style-loader":"^0.6.3","webpack":"^1.1.11","webpack-dev-server":"^1.2.7","wintersmith":"^2.0.10","wintersmith-ejs":"^0.1.4","wintersmith-less":"^0.2.2"},"dependencies":{"lodash-node":"^2.4.1"},"jshintConfig":{"camelcase":true,"curly":true,"eqeqeq":true,"forin":true,"latedef":true,"newcap":false,"undef":true,"unused":true,"trailing":true,"node":true,"browser":true,"predef":["it","describe","beforeEach","afterEach"]}}
|
83
83
|
|
84
84
|
/***/ },
|
85
85
|
/* 2 */
|
@@ -228,6 +228,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
228
228
|
|
229
229
|
this.dispatcher = dispatcher;
|
230
230
|
this.actions = {};
|
231
|
+
this.stores = stores;
|
231
232
|
|
232
233
|
for (var key in actions) {
|
233
234
|
if (actions.hasOwnProperty(key)) {
|
@@ -243,7 +244,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
243
244
|
};
|
244
245
|
|
245
246
|
Flux.prototype.store = function(name) {
|
246
|
-
return this.
|
247
|
+
return this.stores[name];
|
247
248
|
};
|
248
249
|
|
249
250
|
module.exports = Flux;
|