react_on_rails 1.1.0 → 1.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 80be69dda56a35cb09284a210eda3b03d30aad07
4
- data.tar.gz: 1d2ebaeeb0a8e96017adba8b8193e712154fce01
3
+ metadata.gz: 4ec601fd7a8ddbadbe47c0293045aa5cfb372172
4
+ data.tar.gz: 8416f87f0edaca37fe579318312b8e55da00a070
5
5
  SHA512:
6
- metadata.gz: 787b0760428d7256c9cbf5475540ec08d56042f9659e3b87601dcfec762ee0f0204eb7ef0f45596245e67827d0b4de27fa68bf9fff12c2a7629baef64c88a9fb
7
- data.tar.gz: a5e2b275fcd3690a127d18e7d666b5fa5dc165180793410cc16b45f4ca1ea55c2b44c8de4670b32e273c114e59b5bef2f270d19b2000cf18dc3b99fb2f614abd
6
+ metadata.gz: 68af87cb975272a0607689d5207f7cf53d49c04b141adac278f7aaa6038e6c86c4c5d2c962dc6733cc5a6fa1b70cb9f1f8cd424262f7c70a4a6f43eb7f3ffe4f
7
+ data.tar.gz: 052141635f38970e32898fba7bb3aa87fa2f6ea5918f18f1cd9ce577d616ce1098717beac514363b8d09b09423386df1f8fda9b78ae5b6296624d6f07a0b67b1
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  [![Build Status](https://travis-ci.org/shakacode/react_on_rails.svg?branch=master)](https://travis-ci.org/shakacode/react_on_rails) [![Coverage Status](https://coveralls.io/repos/shakacode/react_on_rails/badge.svg?branch=master&service=github)](https://coveralls.io/github/shakacode/react_on_rails?branch=master) [![Dependency Status](https://gemnasium.com/shakacode/react_on_rails.svg)](https://gemnasium.com/shakacode/react_on_rails) [![Gem Version](https://badge.fury.io/rb/react_on_rails.svg)](https://badge.fury.io/rb/react_on_rails)
2
2
 
3
3
  # React on Rails
4
- React on Rails integrates Facebook's [React](https://github.com/facebook/react) front-end framework with Rails. Currently, both React v0.14 and v0.13 are supported. See the Rails on Maui [blog post](http://www.railsonmaui.com/blog/2014/10/03/integrating-webpack-and-the-es6-transpiler-into-an-existing-rails-project/) that started it all!
4
+ React on Rails integrates Facebook's [React](https://github.com/facebook/react) front-end framework with Rails. Currently, both React v0.14 and v0.13 are supported, with server rendering. [Redux](https://github.com/rackt/redux) and [React-Router](https://github.com/rackt/react-redux) are supported as well. See the Rails on Maui [blog post](http://www.railsonmaui.com/blog/2014/10/03/integrating-webpack-and-the-es6-transpiler-into-an-existing-rails-project/) that started it all!
5
5
 
6
6
  Be sure to see the [React Webpack Rails Tutorial Code](https://github.com/shakacode/react-webpack-rails-tutorial) along with the live example at [www.reactrails.com](http://www.reactrails.com).
7
7
 
@@ -37,7 +37,7 @@ module.exports = {
37
37
 
38
38
  new webpack.DefinePlugin({
39
39
  'process.env': {
40
- NODE_ENV: JSON.stringify(NODE_ENV),
40
+ NODE_ENV: JSON.stringify(nodeEnv),
41
41
  },
42
42
  }),
43
43
 
@@ -6,6 +6,7 @@
6
6
 
7
7
  const webpack = require('webpack');
8
8
  const config = require('./webpack.client.base.config');
9
+ const devBuild = process.env.NODE_ENV !== 'production';
9
10
 
10
11
  config.output = {
11
12
  filename: '[name]-bundle.js',
@@ -1,3 +1,3 @@
1
1
  module ReactOnRails
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-11-26 00:00:00.000000000 Z
11
+ date: 2015-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails