react_on_rails 6.2.0 → 6.2.1.rc.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a80015db4a14ea47c149eb4495a4c96747983c9
|
4
|
+
data.tar.gz: 6c11b57f5ea60823e0fc2f9d6505c24024b12c6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 272634a5076671cf9bba9755749294f058a044c6b6c77403328e39e84382f21a6bc37e2a71986095b9bd0352229fb4428fb8596a3fd420b0585d421cdb37d6ad
|
7
|
+
data.tar.gz: 23ddf40fdfa3185e6e3d6a5663dbd63c69fbb73b30e87f2b6ba9fec01fe56023da5daef7f19b272566eceb1466dc8e66482ab55ab042d0bb38786a036c5a2ebb
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,9 @@ Contributors: please follow the recommendations outlined at [keepachangelog.com]
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [6.2.1] - 2016-11-19
|
9
|
+
- Removed unnecesary passing of context in the HelloWorld Container example and basic generator. [#612](https://github.com/shakacode/react_on_rails/pull/612) by [justin808](https://github.com/justin808)
|
10
|
+
|
8
11
|
## [6.2.0] - 2016-11-19
|
9
12
|
##### Changed
|
10
13
|
- Updated the generator templates to reflect current best practices, especially for the redux version. [#584](https://github.com/shakacode/react_on_rails/pull/584) by [nostophilia](https://github.com/nostophilia).
|
@@ -378,7 +381,8 @@ Best done with Object destructing:
|
|
378
381
|
##### Fixed
|
379
382
|
- Fix several generator related issues.
|
380
383
|
|
381
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.2.
|
384
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.2.1...master
|
385
|
+
[6.2.1]: https://github.com/shakacode/react_on_rails/compare/6.2.0...6.2.1
|
382
386
|
[6.2.0]: https://github.com/shakacode/react_on_rails/compare/6.1.2...6.2.0
|
383
387
|
[6.1.2]: https://github.com/shakacode/react_on_rails/compare/6.1.1...6.1.2
|
384
388
|
[6.1.1]: https://github.com/shakacode/react_on_rails/compare/6.1.0...6.1.1
|
@@ -7,8 +7,8 @@ export default class HelloWorldContainer extends React.Component {
|
|
7
7
|
name: PropTypes.string.isRequired, // this is passed from the Rails view
|
8
8
|
};
|
9
9
|
|
10
|
-
constructor(props
|
11
|
-
super(props
|
10
|
+
constructor(props) {
|
11
|
+
super(props);
|
12
12
|
|
13
13
|
// How to set initial state in ES6 class syntax
|
14
14
|
// https://facebook.github.io/react/docs/reusable-components.html#es6-classes
|
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: 6.2.
|
4
|
+
version: 6.2.1.rc.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-11-
|
11
|
+
date: 2016-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -455,9 +455,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
455
455
|
version: '0'
|
456
456
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
457
457
|
requirements:
|
458
|
-
- - "
|
458
|
+
- - ">"
|
459
459
|
- !ruby/object:Gem::Version
|
460
|
-
version:
|
460
|
+
version: 1.3.1
|
461
461
|
requirements: []
|
462
462
|
rubyforge_project:
|
463
463
|
rubygems_version: 2.5.1
|