react_on_rails 3.0.0 → 3.0.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 +4 -4
- data/.jscsrc +2 -1
- data/CHANGELOG.md +9 -3
- data/README.md +1 -2
- data/lib/generators/react_on_rails/templates/base/base/client/webpack.client.hot.config.js.tt +2 -1
- data/lib/generators/react_on_rails/templates/redux/base/client/app/bundles/HelloWorld/reducers/index.jsx +0 -1
- data/lib/generators/react_on_rails/templates/redux/base/client/app/lib/middlewares/loggerMiddleware.js +2 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad60892924ab509eee4759d2af6bb965fd850913
|
4
|
+
data.tar.gz: 9e4291233b0d48e132445ca6c9580770905d8f3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b4c56b9555d6bb92dd24423dd088d2d791b70e0f39b5925733002a60a0c22cf9768dd80b0c37dba53c314a3861dd7aa6201ba8e933a684ce9eaba3ef5976bca
|
7
|
+
data.tar.gz: 7689587b7328487965e133c9184913e192936d71d8b3977b9496eab99951d1ec62443169500e793fb4c8cca223981d07e541f3f7234823802c110d3c3b364f63
|
data/.jscsrc
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,8 +2,13 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. Items under `Unreleased` is upcoming features that will be out in next version.
|
3
3
|
|
4
4
|
Contributors: please follow the recommendations outlined at [keepachangelog.com](http://keepachangelog.com/). Please use the existing headings and styling as a guide, and add a link for the version diff at the bottom of the file. Also, please update the `Unreleased` link to compare to the latest release version.
|
5
|
+
## [Unreleased]
|
5
6
|
|
6
|
-
## [3.0.
|
7
|
+
## [3.0.1] - 2016-02-15
|
8
|
+
##### Fixed
|
9
|
+
- Fixed several jscs linter issues.
|
10
|
+
|
11
|
+
## [3.0.0] - 2016-02-15
|
7
12
|
##### Fixed
|
8
13
|
- Fix Bootstrap Sass Append to Gemfile, missing new line. [#262](https://github.com/shakacode/react_on_rails/pull/262).
|
9
14
|
|
@@ -164,8 +169,9 @@ Best done with Object destructing:
|
|
164
169
|
|
165
170
|
##### Fixed
|
166
171
|
- Fix several generator related issues.
|
167
|
-
|
168
|
-
[3.0.
|
172
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/3.0.1...master
|
173
|
+
[3.0.1]: https://github.com/shakacode/react_on_rails/compare/3.0.0...3.0.1
|
174
|
+
[3.0.0]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0
|
169
175
|
[2.3.0]: https://github.com/shakacode/react_on_rails/compare/2.2.0...2.3.0
|
170
176
|
[2.2.0]: https://github.com/shakacode/react_on_rails/compare/2.1.1...2.2.0
|
171
177
|
[2.1.1]: https://github.com/shakacode/react_on_rails/compare/v2.1.0...2.1.1
|
data/README.md
CHANGED
@@ -2,10 +2,9 @@
|
|
2
2
|
|
3
3
|
# NEWS
|
4
4
|
|
5
|
-
* 3.0.
|
5
|
+
* 3.0.1 shipped on Monday, 2/11/2016. Please see the [Changelog](CHANGELOG.md) for details, and let us know if you see any issues! [Migration steps from 1.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v1-to-v2). [Migration steps from 2.x](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#migration-steps-v2-to-v3).
|
6
6
|
* [RubyGems](https://rubygems.org/gems/react_on_rails/versions/3.0.0.rc.2), `gem "react_on_rails", "~> 3.0.0-rc.2"`
|
7
7
|
* [NPM](https://www.npmjs.com/package/react-on-rails), `npm i --save react-on-rails@3.0.0-rc.2`
|
8
|
-
* 3.0.0.rc.1 shipped on Monday, 2/8/2016.
|
9
8
|
* 3.0.0 Highlights:
|
10
9
|
1. Support for ensuring JavaScript is current when running tests.
|
11
10
|
2. Support for multiple React components with one Redux store. So you can have a header React component and different body React components talking to the same Redux store!
|
data/lib/generators/react_on_rails/templates/base/base/client/webpack.client.hot.config.js.tt
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
// This config file setups up the Webpack Dev Server:
|
1
|
+
// This config file setups up the Webpack Dev Server:
|
2
|
+
// https://webpack.github.io/docs/webpack-dev-server.html
|
2
3
|
// Run like this:
|
3
4
|
// cd client && node server.js
|
4
5
|
|
@@ -1,7 +1,6 @@
|
|
1
1
|
// This file is our manifest of all reducers for the app.
|
2
2
|
// See also /client/app/bundles/HelloWorld/store/helloWorldStore.jsx
|
3
3
|
// A real world app will likely have many reducers and it helps to organize them in one file.
|
4
|
-
// `https://github.com/shakacode/react_on_rails/tree/master/docs/additional_reading/generated_client_code.md`
|
5
4
|
import helloWorldReducer from './helloWorldReducer';
|
6
5
|
import { $$initialState as $$helloWorldState } from './helloWorldReducer';
|
7
6
|
|
@@ -1,7 +1,8 @@
|
|
1
1
|
/* eslint no-console: 0 */
|
2
2
|
|
3
3
|
// This logger should be configured not to run in a production environment.
|
4
|
-
// See https://github.com/petehunt/webpack-howto#6-feature-flags for you might turn this
|
4
|
+
// See https://github.com/petehunt/webpack-howto#6-feature-flags for how you might turn this
|
5
|
+
// off for production.
|
5
6
|
export default function logger({ getState }) {
|
6
7
|
return next => action => {
|
7
8
|
console.log('will dispatch', action);
|
data/package.json
CHANGED
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: 3.0.
|
4
|
+
version: 3.0.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: 2016-02-
|
11
|
+
date: 2016-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|