react_on_rails 3.0.0 → 3.0.1

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: 53ae5981777ac65544d2097df43ed3f8246c3334
4
- data.tar.gz: 01fc2c4593eee7ff83f9a21ac2a6b6f3ef6ba746
3
+ metadata.gz: ad60892924ab509eee4759d2af6bb965fd850913
4
+ data.tar.gz: 9e4291233b0d48e132445ca6c9580770905d8f3f
5
5
  SHA512:
6
- metadata.gz: 2c998f58b2ffcc792259f3de97ac1151dec8df3e8c12e19a1ee2d1560ec93f0ad4a04e4df17d17d7d08f189462f507c2a5ca60527d12f1d28d915ce496fe953e
7
- data.tar.gz: f4b472db716edb552c0068d4141fc0af30fc221235d198865f258453e5aeb4d6bd137f957eb53141c3a5a0d2d1760dd96ed41c375377eaf6c1dcf3da4f5e547b
6
+ metadata.gz: 1b4c56b9555d6bb92dd24423dd088d2d791b70e0f39b5925733002a60a0c22cf9768dd80b0c37dba53c314a3861dd7aa6201ba8e933a684ce9eaba3ef5976bca
7
+ data.tar.gz: 7689587b7328487965e133c9184913e192936d71d8b3977b9496eab99951d1ec62443169500e793fb4c8cca223981d07e541f3f7234823802c110d3c3b364f63
data/.jscsrc CHANGED
@@ -15,7 +15,8 @@
15
15
  "**/vendor/**",
16
16
  "**/dummy-for-generators/**",
17
17
  "**/dummy/**",
18
- "**/node_package/lib/**"
18
+ "**/node_package/lib/**",
19
+ "**/app/assets/javascripts/application.js"
19
20
  ],
20
21
  "esprima": "babel-jscs",
21
22
  "validateQuoteMarks": {
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.0-rc.2] - 2016-02-09
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.0-rc.1]: https://github.com/shakacode/react_on_rails/compare/2.3.0...3.0.0-rc.1
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.0.rc.2 shipped on Sunday, 2/14/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).
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!
@@ -1,4 +1,5 @@
1
- // This config file setups up the Webpack Dev Server: https://webpack.github.io/docs/webpack-dev-server.html
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 off for production.
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);
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ReactOnRails
3
- VERSION = "3.0.0".freeze
3
+ VERSION = "3.0.1".freeze
4
4
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "react-on-rails JavaScript for react_on_rails Ruby gem",
5
5
  "main": "node_package/lib/ReactOnRails.js",
6
6
  "directories": {
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.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-15 00:00:00.000000000 Z
11
+ date: 2016-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool