react_on_rails 3.0.4 → 3.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -2
- data/README.md +1 -1
- data/lib/generators/react_on_rails/templates/base/base/client/server.js +1 -1
- data/lib/generators/react_on_rails/templates/base/base/lib/tasks/linters.rake.tt +2 -2
- 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: adbd35b7df61b8be0b99d5150855836e9b0b970b
|
4
|
+
data.tar.gz: 9f6ec4926737f149b83f96a80b7474c4f894061a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afdd17ef0e2c01d15396228cbeb554eca60b6d0bf12df03075e578911aa4b46788e61421cf0e2e44052558647b50b7273ba33ed0e44ebe038bec0339165024a0
|
7
|
+
data.tar.gz: e5e324a3e5702a6d534a7e8bffd74f304242d580e63521004001e4efabd6f345fe1665b88ca26128534c673db688a5e0779819216b4c0d96221f7a0e51ce8084
|
data/CHANGELOG.md
CHANGED
@@ -4,9 +4,14 @@ All notable changes to this project will be documented in this file. Items under
|
|
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
5
|
## [Unreleased]
|
6
6
|
|
7
|
+
## [3.0.5] - 2016-02-26
|
8
|
+
##### Fixed
|
9
|
+
- Fixed error in linters rake file for generator. See [#299](https://github.com/shakacode/react_on_rails/pull/299) by [mpugach](https://github.com/mpugach).
|
10
|
+
|
7
11
|
## [3.0.4] - 2016-02-25
|
12
|
+
##### Fixed
|
8
13
|
- Updated CHANGELOG.md to include contributors for each PR.
|
9
|
-
-
|
14
|
+
- Fixed config.server_bundle_js file value in generator to match generator setting of server rendering. See [#295](https://github.com/shakacode/react_on_rails/pull/295) by [aaronvb](https://github.com/aaronvb).
|
10
15
|
|
11
16
|
## [3.0.3] - 2016-02-21
|
12
17
|
##### Fixed
|
@@ -183,7 +188,8 @@ Best done with Object destructing:
|
|
183
188
|
|
184
189
|
##### Fixed
|
185
190
|
- Fix several generator related issues.
|
186
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/3.0.
|
191
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/3.0.5...master
|
192
|
+
[3.0.5]: https://github.com/shakacode/react_on_rails/compare/3.0.4...3.0.5
|
187
193
|
[3.0.4]: https://github.com/shakacode/react_on_rails/compare/3.0.3...3.0.4
|
188
194
|
[3.0.3]: https://github.com/shakacode/react_on_rails/compare/3.0.2...3.0.3
|
189
195
|
[3.0.2]: https://github.com/shakacode/react_on_rails/compare/3.0.1...3.0.2
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# NEWS
|
4
4
|
|
5
5
|
* Just added a [Projects page](PROJECTS.md). Please submit a PR with your project!
|
6
|
-
* 3.0.
|
6
|
+
* 3.0.5 shipped on Friday, 2/26/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).
|
7
7
|
* [RubyGems](https://rubygems.org/gems/react_on_rails/versions/3.0.0.rc.2), `gem "react_on_rails", "~> 3.0.0-rc.2"`
|
8
8
|
* [NPM](https://www.npmjs.com/package/react-on-rails), `npm i --save react-on-rails@3.0.0-rc.2`
|
9
9
|
* 3.0.0 Highlights:
|
@@ -64,7 +64,7 @@ server.app.use('/', (req, res) => {
|
|
64
64
|
server.listen(PORT, 'localhost', err => {
|
65
65
|
if (err) console.error(err);
|
66
66
|
console.log(
|
67
|
-
|
67
|
+
`=> 🔥 Webpack development server is running on port ${PORT}`
|
68
68
|
);
|
69
69
|
});
|
70
70
|
compiler.plugin('done', () => {
|
@@ -57,14 +57,14 @@ if %w(development test).include? Rails.env
|
|
57
57
|
<%- unless options.skip_js_linters? -%>
|
58
58
|
desc "eslint"
|
59
59
|
task :eslint do
|
60
|
-
cmd = "cd client && npm run eslint
|
60
|
+
cmd = "cd client && npm run eslint"
|
61
61
|
puts "Running eslint via `#{cmd}`"
|
62
62
|
sh cmd
|
63
63
|
end
|
64
64
|
|
65
65
|
desc "jscs"
|
66
66
|
task :jscs do
|
67
|
-
cmd = "cd client && npm run jscs
|
67
|
+
cmd = "cd client && npm run jscs"
|
68
68
|
puts "Running jscs via `#{cmd}`"
|
69
69
|
sh cmd
|
70
70
|
end
|
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.5
|
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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|