react_on_rails 6.0.0.rc.6 → 6.0.0

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: b624ec3c9c4eff36991a0ac06b7f47e396449a1b
4
- data.tar.gz: 28c02ca9f8e7eecf5c220a6c3b73b7e2bebe5c4e
3
+ metadata.gz: 6ceea071c5632c70ad26d87600c7ea7dd142f454
4
+ data.tar.gz: 91ebd4f95c6e312fc92b8d140a2050d06194f1a5
5
5
  SHA512:
6
- metadata.gz: d7281ea019fd0a6a34482890e2ed6fc17398062bc49a1c90e40205c9b22f452b578b13c8c792b85d79525fc56948ae29ab0f6a34963cb30be84e7ad42871c470
7
- data.tar.gz: 1595f308b86787c01898288bfc7ca4c468466226bdc3fd013afae83c441dcc699819cb6c41ab06c9feb3f8d192f7e1fd5bd2df7b34596f4793900f4f7a40735e
6
+ metadata.gz: 9c655ee1d10a68374b04e9cabf1ed3072a613c57a54ca4dacd1981d4aace05290e80a8a6f57398e3fae50d90e26814008aead08b4e476a2863e996a02ac6e04e
7
+ data.tar.gz: ab07331caf0543d415fa5ebddcbbe5e492307e5e4af4ca6fb4d49d6c3df830ba9af01fc164819ba2c14da3428668734cc6ec9806f18d64bf15ffc1d791ae9d4f
data/CHANGELOG.md CHANGED
@@ -4,7 +4,7 @@ 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
- ## [6.0.0-rc.5]
7
+ ## [6.0.0]
8
8
  ##### Breaking Changes
9
9
  - Added automatic compilation of assets at precompile is now done by ReactOnRails. Thus, you don't need to provide your own assets.rake file that does the precompilation.
10
10
  [#398](https://github.com/shakacode/react_on_rails/pull/398) by [robwise](https://github.com/robwise), [jbhatab](https://github.com/jbhatab), and [justin808](https://github.com/justin808).
@@ -332,8 +332,8 @@ Best done with Object destructing:
332
332
  ##### Fixed
333
333
  - Fix several generator related issues.
334
334
 
335
- [Unreleased]: https://github.com/shakacode/react_on_rails/compare/5.2.0...master
336
- [6.0.0-rc.5]: https://github.com/shakacode/react_on_rails/compare/5.2.0...6.0.0-rc.5
335
+ [Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.0.0...master
336
+ [6.0.0]: https://github.com/shakacode/react_on_rails/compare/5.2.0...6.0.0
337
337
  [5.2.0]: https://github.com/shakacode/react_on_rails/compare/5.1.1...5.2.0
338
338
  [5.1.1]: https://github.com/shakacode/react_on_rails/compare/5.1.0...5.1.1
339
339
  [5.1.0]: https://github.com/shakacode/react_on_rails/compare/5.0.0...5.1.0
@@ -1,3 +1,5 @@
1
1
  # Babel
2
2
 
3
3
  As of React on Rails 2.0, we recommend Babel 6 and at least node version 5.5. If you want to stick with Babel 5 for a bit, see [Issue #238](https://github.com/shakacode/react_on_rails/issues/238).
4
+
5
+ We recommend that you take a look at https://github.com/shakacode/react-webpack-rails-tutorial and follow the recipe there. We will try to keep that simple example updated.
@@ -26,5 +26,3 @@ You need to configure the name of the server bundle in two places:
26
26
  # not affect performance.
27
27
  config.server_bundle_js_file = "webpack-bundle.js"
28
28
  ```
29
-
30
-
@@ -13,7 +13,7 @@ css files compiled by webpack on the client side, because they don't use
13
13
 
14
14
  ### Solution
15
15
 
16
- Create symlinks of non-digested versions to digested versions when Rails assets compile.
16
+ React on Rails creates symlinks of non-digested versions to digested versions when doing a Rails assets compile.
17
17
  The solution is implemented using `assets:precompile` after-hook. The assets for symlinking
18
18
  are defined by `config.symlink_non_digested_assets_regex` in `config/initializers/react_on_rails.rb`.
19
19
  To disable symlinks set this parameter to `nil`.
@@ -1,7 +1,7 @@
1
1
  # Turbolinks
2
2
 
3
3
  * See [Turbolinks on Github](https://github.com/rails/turbolinks)
4
- * Currently support 2.5.x of Turbolinks and 5.0.0.beta1 of Turbolinks 5.
4
+ * Currently support 2.5.x of Turbolinks and 5.0.0 of Turbolinks 5.
5
5
  * Turbolinks is currently included only via the Rails gem and the Rails manifest file rather than NPM. [Turbolinks Issue #658 ](https://github.com/rails/turbolinks/issues/658) discusses this.
6
6
 
7
7
  ## Why Turbolinks?
@@ -13,4 +13,3 @@ Note that **React-related error messages are possibly more helpful when encounte
13
13
 
14
14
  ### Adding Additional Routes for the Dev Server
15
15
  As you add more routes to your front-end application, you will need to make the corresponding API for the dev server in `client/server.js`. See our example `server.js` from our [tutorial](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/client%2Fserver-express.js).
16
-
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ReactOnRails
3
- VERSION = "6.0.0.rc.6".freeze
3
+ VERSION = "6.0.0".freeze
4
4
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "6.0.0-rc.6",
3
+ "version": "6.0.0",
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: 6.0.0.rc.6
4
+ version: 6.0.0
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-05-24 00:00:00.000000000 Z
11
+ date: 2016-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -450,9 +450,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
450
450
  version: '0'
451
451
  required_rubygems_version: !ruby/object:Gem::Requirement
452
452
  requirements:
453
- - - ">"
453
+ - - ">="
454
454
  - !ruby/object:Gem::Version
455
- version: 1.3.1
455
+ version: '0'
456
456
  requirements: []
457
457
  rubyforge_project:
458
458
  rubygems_version: 2.5.1