webpack-rails-react 1.0.3 → 1.0.4

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: 479aa47c101c57783a6a656467784d6f479f199c
4
- data.tar.gz: b342a5cfc36a24fa91804494b8295832995c3b81
3
+ metadata.gz: e648ebd9ed9c65d4f05cae99788cb61f18119f71
4
+ data.tar.gz: 6d8dfdd8823dabe0035be121f0a8e4a3cdd259fb
5
5
  SHA512:
6
- metadata.gz: 9961c8ee790d7b81cb4a36cc8359b6b7e19680b256a6957dd92c011b3a0d773129df99083be8bf2d646fa14b3ebadae135af309db3c439234b16351fe3262d5f
7
- data.tar.gz: 4c3554f5d3001dd4c5d056b1f4de3fb79972707d89cb7528acbc2846b226692b4897f0f008be350482891b33ddd65dcf02c426ae81acada56e3776d0ba444473
6
+ metadata.gz: 70c31b7ce725105199be5e2766f1b11ea4866c8026baf970b52be2f599279b56f5fcea946c8fa8e4e9f36d3bc5abf5128c23716ce4ddb9f74c25e581eca2c57f
7
+ data.tar.gz: 1a4f23c436e1f4f501284c5c6d359f627f628bb0c2fbb96f0325a7474645f4a42936678226a5abea2ee9d471eed9cabd139063b66707485ee9ff850231565f23
data/README.md CHANGED
@@ -69,6 +69,9 @@ Add `rake webpack:compile` to your deployment. It serves a similar purpose as Sp
69
69
 
70
70
  If you're using `[chunkhash]` in your build asset filenames (which you should be, if you want to cache them in production), you'll need to persist built assets between deployments. Consider in-flight requests at the time of deployment: they'll receive paths based on the old `manifest.json`, not the new one.
71
71
 
72
+ ## Example Apps
73
+ [basic](https://github.com/wdjungst/webpack-rails-react-basic)
74
+ [react-router](https://github.com/wdjungst/webpack-rails-react-router)
72
75
  ## TODO
73
76
 
74
77
  * Add eslint to client
@@ -4,7 +4,7 @@ import { Router, browserHistory } from 'react-router';
4
4
  import routes from './routes';
5
5
 
6
6
  ReactDOM.render(
7
- <Router history={broserHistory} routes={routes} />,
8
- doucment.getElementById('app')
7
+ <Router history={browserHistory} routes={routes} />,
8
+ document.getElementById('app')
9
9
  );
10
10
 
@@ -2,7 +2,7 @@ module Webpack
2
2
  # :nodoc:
3
3
  module Rails
4
4
  module React
5
- VERSION = "1.0.3"
5
+ VERSION = "1.0.4"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webpack-rails-react
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Jungst