Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit 4e509e2

Browse files
committed
updated readme
1 parent 91dfbe9 commit 4e509e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Gem Version](https://badge.fury.io/rb/reactrb.svg)](https://badge.fury.io/rb/reactrb)
77

88
**Reactrb is an [Opal Ruby](http://opalrb.org) wrapper of
9-
[React.js library](http://facebook.github.io/react/)**.
9+
[React.js library](http://facebook.github.io/reactrb/)**.
1010

1111
It lets you write reactive UI components, with Ruby's elegance using the tried
1212
and true React.js engine. :heart:
@@ -37,7 +37,7 @@ Each react component class defines a new tag-method in the DSL that works just l
3737

3838
As events occur, components update their state, which causes them to rerender, and perhaps pass new parameters to lower level components, thus causing them to rerender.
3939

40-
Under the hood the actual work is effeciently done by the [React.js](http://facebook.github.io/react/) engine.
40+
Under the hood the actual work is effeciently done by the [React.js](http://facebook.github.io/reactrb/) engine.
4141

4242
Reactrb components are *isomorphic* meaning they can run on the server as well as the client. This means that the initial expansion of the component tree to markup is done server side, just like ERB, or HAML templates. Then the same code runs on the client and will respond to any events.
4343

@@ -70,7 +70,7 @@ The first initial version of `reactrb` is 0.8.x.
7070
It is very unlikely that there will be any more releases of the `reactive-ruby` gem, so users should upgrade to `reactrb`.
7171

7272
There are no syntactic or semantic breaking changes between `reactrb` v 0.8.x and
73-
previous versions, however the `reactrb` does *not* include the react js source as previous versions did. This allows you to pick the react js source compatible with other gems and react js components you may be using.
73+
previous versions, however the `reactrb` gem does *not* include the react-js source as previous versions did. This allows you to pick the react js source compatible with other gems and react js components you may be using.
7474

7575
To upgrade, replace `reactive-ruby` with `reactrb`, both in your Gemfile, and in any `requires` in your code. You will also need to require react-js as this is no longer included in the gem.
7676

@@ -86,7 +86,7 @@ Upcoming will be an 0.9.x release which will deprecate a number of features and
8686

8787
Version 0.10.x **will not be** 100% backward compatible with 0.3.0 (`react.rb`) or 0.7.x (`reactive-ruby`) so its very important to begin your upgrade process now by switching to `reactrb` now.
8888

89-
Please let us know either at [Gitter.im](https://gitter.im/react/chat) or [via an issue](https://github.com/react/reactrb/issues) if you have specific concerns with the upgrade from 0.3.0 to 0.10.x.
89+
Please let us know either at [Gitter.im](https://gitter.im/reactrb/chat) or [via an issue](https://github.com/reactrb/reactrb/issues) if you have specific concerns with the upgrade from 0.3.0 to 0.10.x.
9090

9191
## Developing
9292

lib/reactive-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module React
2-
VERSION = '0.8.0'
2+
VERSION = "0.8.0"
33
end

0 commit comments

Comments
 (0)