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

Commit 5da7352

Browse files
committed
resolved bogus merge conflicts
2 parents cd8150b + d79a570 commit 5da7352

35 files changed

+370
-973
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![Join the chat at https://gitter.im/zetachang/react.rb](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/zetachang/react.rb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44
[![Build Status](https://travis-ci.org/zetachang/react.rb.svg)](https://travis-ci.org/zetachang/react.rb)
55
[![Code Climate](https://codeclimate.com/github/zetachang/react.rb/badges/gpa.svg)](https://codeclimate.com/github/zetachang/react.rb)
6+
[![Gem Version](https://badge.fury.io/rb/reactive-ruby.svg)](https://badge.fury.io/rb/reactive-ruby)
67

78
**React.rb is an [Opal Ruby](http://opalrb.org) wrapper of
89
[React.js library](http://facebook.github.io/react/)**.
@@ -59,7 +60,7 @@ In your Gemfile:
5960
```ruby
6061
gem 'reactive-ruby'
6162
gem 'react-rails', '~> 1.3.2'
62-
gem 'opal-rails'
63+
gem 'opal-rails', '~> 0.8.1'
6364
gem 'therubyracer', platforms: :ruby # Required for prerendering
6465
# for JRuby you need the below line instead
6566
# gem 'therubyrhino, platforms: :jruby

example/examples/Gemfile.lock

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PATH
22
remote: ../..
33
specs:
4-
reactive-ruby (0.7.27)
5-
opal
4+
reactive-ruby (0.7.36)
5+
opal (= 0.8.0)
66
opal-activesupport (>= 0.2.0)
7-
opal-browser
7+
opal-browser (= 0.2.0)
88

99
GEM
1010
remote: http://rubygems.org/
@@ -46,6 +46,7 @@ GEM
4646
tzinfo (~> 1.1)
4747
arel (6.0.3)
4848
builder (3.2.2)
49+
concurrent-ruby (1.0.0)
4950
erubis (2.7.0)
5051
globalid (0.3.6)
5152
activesupport (>= 4.1.0)
@@ -65,7 +66,7 @@ GEM
6566
minitest (5.8.1)
6667
nokogiri (1.6.6.2)
6768
mini_portile (~> 0.6.0)
68-
opal (0.8.1)
69+
opal (0.8.0)
6970
hike (~> 1.2)
7071
sourcemap (~> 0.1.0)
7172
sprockets (~> 3.1)
@@ -86,7 +87,7 @@ GEM
8687
rails (>= 3.2, < 5.0)
8788
opal-rspec (0.4.3)
8889
opal (>= 0.7.0, < 0.9)
89-
paggio (0.2.5)
90+
paggio (0.2.6)
9091
rack (1.6.4)
9192
rack-protection (1.5.3)
9293
rack
@@ -124,7 +125,8 @@ GEM
124125
rack-protection (~> 1.4)
125126
tilt (>= 1.3, < 3)
126127
sourcemap (0.1.1)
127-
sprockets (3.4.0)
128+
sprockets (3.5.2)
129+
concurrent-ruby (~> 1.0)
128130
rack (> 1, < 3)
129131
sprockets-rails (2.3.3)
130132
actionpack (>= 3.0)

example/rails-tutorial/Gemfile.lock

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PATH
22
remote: ../..
33
specs:
4-
reactive-ruby (0.7.27)
5-
opal
4+
reactive-ruby (0.7.36)
5+
opal (= 0.8.0)
66
opal-activesupport (>= 0.2.0)
7-
opal-browser
7+
opal-browser (= 0.2.0)
88

99
GEM
1010
remote: https://rubygems.org/
@@ -60,6 +60,7 @@ GEM
6060
coffee-script-source
6161
execjs
6262
coffee-script-source (1.9.1.1)
63+
concurrent-ruby (1.0.0)
6364
connection_pool (2.2.0)
6465
debug_inspector (0.0.2)
6566
erubis (2.7.0)
@@ -87,7 +88,7 @@ GEM
8788
multi_json (1.11.2)
8889
nokogiri (1.6.6.2)
8990
mini_portile (~> 0.6.0)
90-
opal (0.8.1)
91+
opal (0.8.0)
9192
hike (~> 1.2)
9293
sourcemap (~> 0.1.0)
9394
sprockets (~> 3.1)
@@ -108,7 +109,7 @@ GEM
108109
rails (>= 3.2, < 5.0)
109110
opal-rspec (0.4.3)
110111
opal (>= 0.7.0, < 0.9)
111-
paggio (0.2.5)
112+
paggio (0.2.6)
112113
rack (1.6.4)
113114
rack-test (0.6.3)
114115
rack (>= 1.0)
@@ -158,7 +159,8 @@ GEM
158159
rdoc (~> 4.0)
159160
sourcemap (0.1.1)
160161
spring (1.3.6)
161-
sprockets (3.4.0)
162+
sprockets (3.5.2)
163+
concurrent-ruby (~> 1.0)
162164
rack (> 1, < 3)
163165
sprockets-rails (2.3.3)
164166
actionpack (>= 3.0)

example/sinatra-tutorial/Gemfile.lock

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
PATH
22
remote: ../..
33
specs:
4-
reactive-ruby (0.7.25)
5-
opal
4+
reactive-ruby (0.7.36)
5+
opal (= 0.8.0)
66
opal-activesupport (>= 0.2.0)
7-
opal-browser
7+
opal-browser (= 0.2.0)
88

99
GEM
1010
remote: https://rubygems.org/
1111
specs:
12+
concurrent-ruby (1.0.0)
1213
hike (1.2.3)
1314
opal (0.8.0)
1415
hike (~> 1.2)
@@ -22,7 +23,7 @@ GEM
2223
paggio
2324
opal-jquery (0.4.0)
2425
opal (>= 0.7.0, < 0.9.0)
25-
paggio (0.2.5)
26+
paggio (0.2.6)
2627
rack (1.6.4)
2728
rack-protection (1.5.3)
2829
rack
@@ -31,8 +32,9 @@ GEM
3132
rack-protection (~> 1.4)
3233
tilt (>= 1.3, < 3)
3334
sourcemap (0.1.1)
34-
sprockets (3.3.3)
35-
rack (~> 1.0)
35+
sprockets (3.5.2)
36+
concurrent-ruby (~> 1.0)
37+
rack (> 1, < 3)
3638
tilt (2.0.1)
3739

3840
PLATFORMS

example/todos/Gemfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

example/todos/Gemfile.lock

Lines changed: 0 additions & 84 deletions
This file was deleted.

example/todos/README.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

example/todos/Rakefile

Lines changed: 0 additions & 8 deletions
This file was deleted.

example/todos/app/application.rb

Lines changed: 0 additions & 22 deletions
This file was deleted.

example/todos/app/components/app.react.rb

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)