diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-06-07 16:23:25 -0700 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-06-07 16:27:50 -0700 |
commit | f0b9ebc43b77b210a2fc6a5b70c9201e998ca3f3 (patch) | |
tree | dbdd76c5349e8df0dbdce688032ec5ebd6515831 /guides/source | |
parent | 1621eda81d6abcc13c7755606752710b5d84c49b (diff) | |
download | rails-f0b9ebc43b77b210a2fc6a5b70c9201e998ca3f3.tar.gz rails-f0b9ebc43b77b210a2fc6a5b70c9201e998ca3f3.tar.bz2 rails-f0b9ebc43b77b210a2fc6a5b70c9201e998ca3f3.zip |
Add Action Cable introduction to release notes [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/5_0_release_notes.md | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md index a07ce7e859..71861d079e 100644 --- a/guides/source/5_0_release_notes.md +++ b/guides/source/5_0_release_notes.md @@ -37,9 +37,20 @@ Major Features -------------- ### Action Cable -[Pull Request](https://github.com/rails/rails/pull/22586) -ToDo... +Action Cable is a new framework in Rails 5. It seamlessly integrates +[WebSockets](https://en.wikipedia.org/wiki/WebSocket) with the rest of your +Rails application. + +Action Cable allows for real-time features to be written in Ruby in the +same style and form as the rest of your Rails application, while still being +performant and scalable. It's a full-stack offering that provides both a +client-side JavaScript framework and a server-side Ruby framework. You have +access to your full domain model written with Active Record or your ORM of +choice. + +See the [Active Cable Overview](action_cable_overview.html) guide for more +information. ### Rails API [Pull Request](https://github.com/rails/rails/pull/19832) |