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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbd0c934bb03efb1996942a40f775cff9222a0b4
4
- data.tar.gz: c310d2466a77ac02116440afb5969f6fd9d188a3
3
+ metadata.gz: baf5eb8c9f710990ac7903f03d77c565571dcaeb
4
+ data.tar.gz: 271fe620782c8998ca88b1be9b588aba33a42821
5
5
  SHA512:
6
- metadata.gz: 1478c242405a64ccb46f2d3dc3b417d0d01f0621a60d71063d358dca00ec7c3ed09c74473572ff8e1eb07f44745dcbf41f9f20f5374431d5bfda443f9d5675fa
7
- data.tar.gz: 46982d427e014d2a80c840421fe9704d91705809e30585a7aa0485d0776aa54506b1178d3f096d339b679aec5e438bcce82e9d00cab219cf95ee159f83501e52
6
+ metadata.gz: 36c44e21b014cfb2ae6996e9d91feaf56e661d476e50a3a9237efaa300334e3acd55e7e8c5c14e1d47bdb1dd27b0e94f2b431a79e788829c46474213048bea35
7
+ data.tar.gz: 66dc64b3856659cdf020167e15cf26db0e9ce4f7923f17e3149dcfa2ce6da4404439bd12e3948d856e03a49fe14d71d18d16c74ee1a95e29590b5582ed92ac8b
@@ -1,5 +1,5 @@
1
1
  module Fluxxor
2
2
  module Rails
3
- VERSION = '1.2.1'
3
+ VERSION = '1.2.2'
4
4
  end
5
5
  end
@@ -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)
@@ -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.1","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"]}}
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.dispatcher.stores[name];
247
+ return this.stores[name];
247
248
  };
248
249
 
249
250
  module.exports = Flux;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluxxor-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zach Schneider