reactrb 0.7.42 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 348447fe7ec3c4e8861c7b96425fc0c2e653ee95
4
- data.tar.gz: 58bb71acdd6997b51cd638ae3d169d86162e96f2
3
+ metadata.gz: 5150a31c5fbde40b2548713ac0ea3e2b4d1132e3
4
+ data.tar.gz: 7488cc85091cde5fabcc15b2d899cff4634da59e
5
5
  SHA512:
6
- metadata.gz: 8ddd37c7c34147884e903ce1ee82c55723e35e44f98800818cfc576968c9f18653b523f119bf380605c2dc1cd7e69087ee1ea68cd21e60ad7bc9e5190dba6abe
7
- data.tar.gz: fae6b637ff0e27c8e0d01e17cc373bede6e6351aa4539b942d4b45d6454e6dded28083a4eb6a30a12af38997649df2a812c8a56ba5831a5b496d7935e15ff566
6
+ metadata.gz: 235d9c179e4a6de7412565380efd763182043fc68c342c7ac1c9d691bf883b520cbf6863d94ddf2732a2dc4c03f71b16a5f765d862d5b31f2b586374b22b1caa
7
+ data.tar.gz: f9788e50fdbd37436428b7b1d4d2f15cb74cb053347b0d3dc87b8ebe883473385e780993af9680b8340f4df8c742a7f5357c3fd4ce9924772928f5bd8ee56038
data/Gemfile CHANGED
@@ -1,2 +1,3 @@
1
1
  source 'https://rubygems.org'
2
+ #gem 'opal-rails', git: "https://github.com/opal/opal-rails.git"
2
3
  gemspec
data/README.md CHANGED
@@ -1,33 +1,33 @@
1
- # React.rb / Reactive-Ruby
1
+ # Reactrb / Reactive-Ruby
2
2
 
3
- [![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)
4
- [![Build Status](https://travis-ci.org/zetachang/react.rb.svg)](https://travis-ci.org/zetachang/react.rb)
5
- [![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)
3
+ [![Join the chat at https://gitter.im/reactrb/chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/reactrb/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
+ [![Build Status](https://travis-ci.org/reactrb/reactrb.svg)](https://travis-ci.org/reactrb/reactrb)
5
+ [![Code Climate](https://codeclimate.com/github/reactrb/reactrb/badges/gpa.svg)](https://codeclimate.com/github/reactrb/reactrb)
6
+ [![Gem Version](https://badge.fury.io/rb/reactrb.svg)](https://badge.fury.io/rb/reactrb)
7
7
 
8
- **React.rb is an [Opal Ruby](http://opalrb.org) wrapper of
9
- [React.js library](http://facebook.github.io/react/)**.
8
+ **Reactrb is an [Opal Ruby](http://opalrb.org) wrapper of
9
+ [React.js library](http://facebook.github.io/reactrb/)**.
10
10
 
11
11
  It lets you write reactive UI components, with Ruby's elegance using the tried
12
12
  and true React.js engine. :heart:
13
13
 
14
14
  [**Visit reactrb.org For The Full Story**](http://reactrb.org)
15
15
 
16
- ### Important: current `react.rb` gem users please [read this!](#road-map)
16
+ ### Important: `react.rb` and `reactive-ruby` gems are **deprecated.** Please [read this!](#upgrading-to-reactrb)
17
17
 
18
- ## Installation
18
+ ## Installation
19
19
 
20
20
  Install the gem, or load the js library
21
21
 
22
- + add `gem 'reactive-ruby'` to your gem file or
23
- + `gem install reactive-ruby` or
24
- + install (or load via cdn) [inline-reactive-ruby.js](http://github.com/reactive-ruby/inline-reactive-ruby)
22
+ + add `gem 'reactrb'` to your gem file or
23
+ + `gem install reactrb` or
24
+ + install (or load via cdn) [inline-reactrb.js](http://github.com/reactrb/inline-reactrb)
25
25
 
26
26
  For gem installation it is highly recommended to read [the getting started section at reactrb.org](http://reactrb.org/docs/getting-started.html)
27
27
 
28
28
  ## Quick Overview
29
29
 
30
- React.rb components are ruby classes that inherit from `React::Component::Base` or include `React::Component`.
30
+ Reactrb components are ruby classes that inherit from `React::Component::Base` or include `React::Component`.
31
31
 
32
32
  `React::Component` provides a complete DSL to generate html and event handlers, and has full set of class macros to define states, parameters, and lifecycle callbacks.
33
33
 
@@ -37,11 +37,11 @@ Each react component class defines a new tag-method in the DSL that works just l
37
37
 
38
38
  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.
39
39
 
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.
41
41
 
42
- React.rb 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.
42
+ 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.
43
43
 
44
- React.rb integrates well with Rails, Sinatra, and simple static sites, and can be added to existing web pages very easily, or it can be used to deliver complete websites.
44
+ Reactrb integrates well with Rails, Sinatra, and simple static sites, and can be added to existing web pages very easily, or it can be used to deliver complete websites.
45
45
 
46
46
  ## Why ?
47
47
 
@@ -55,36 +55,51 @@ React.rb integrates well with Rails, Sinatra, and simple static sites, and can b
55
55
  # Problems, Questions, Issues
56
56
 
57
57
  + [Stack Overflow](http://stackoverflow.com/questions/tagged/react.rb) tag `react.rb` for specific problems.
58
- + [Gitter.im](https://gitter.im/zetachang/react.rb) for general questions, discussion, and interactive help.
59
- + [Github Issues](https://github.com/zetachang/react.rb/issues) for bugs, feature enhancements, etc.
58
+ + [Gitter.im](https://gitter.im/reactrb/chat) for general questions, discussion, and interactive help.
59
+ + [Github Issues](https://github.com/reactrb/reactrb/issues) for bugs, feature enhancements, etc.
60
60
 
61
61
 
62
- # Road Map
62
+ # Upgrading to Reactrb
63
63
 
64
- The original `react.rb` gem is still available as the [0-3-stable branch.](https://github.com/zetachang/react.rb/tree/0-3-stable) **but please read on..**
64
+ The original gem `react.rb` was superceeded by `reactive-ruby`, which has had over 15,000 downloads. This name has now been superceeded by `reactrb` (see #144 for detailed discussion on why.)
65
65
 
66
- Many new features, bug fixes, and improvements are incoporated in the `reactive-ruby` gem currently built on the [0-7-stable branch.](https://github.com/zetachang/react.rb/tree/0-7-stable) In addtion more extensive documentation for the current stable branch is available at [reactrb.org](http://reactrb.org), and the [Opal Ruby Playground](http://fkchang.github.io/opal-playground/?code:&html_code=%3Cdiv%20id%3D%22container%22%3E%3C%2Fdiv%3E%0A&css_code=body%20%7B%0A%20%20background%3A%20%23eeeeee%3B%0A%7D%0A) incorporates the current stable branch.
66
+ Going forward the name `reactrb` will be used consistently as the organization name, the gem name, the domain name, the twitter handle, etc.
67
67
 
68
- Our plan is to do one more upgrade on the `reactive-ruby` gem which will be designated version 0.8.0. [click for detailed feature list](https://github.com/zetachang/react.rb/milestones/0.8.x)
68
+ The first initial version of `reactrb` is 0.8.x.
69
69
 
70
- From 0.9.0 and beyond we will return to using the `react.rb` gem for releases, and `reactive-ruby` will continue as a meta gem that depends only on react.rb >= 0.9.x.
70
+ It is very unlikely that there will be any more releases of the `reactive-ruby` gem, so users should upgrade to `reactrb`.
71
71
 
72
- Version 0.9.0 of `react.rb` **will not be** 100% backward compatible with 0.3.0 so its very important to begin your upgrade process now by switching to `reactive-ruby` 0.7.0.
72
+ There are no syntactic or semantic breaking changes between `reactrb` v 0.8.x and
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.
73
74
 
74
- Please let us know either at [Gitter.im](https://gitter.im/zetachang/react.rb) or [via an issue](https://github.com/zetachang/react.rb/issues) if you have specific concerns with the upgrade from 0.3.0 to 0.9.0.
75
+ 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.
76
+
77
+ If you are using react-rails then simply find anyplace where you `require 'reactrb'` and immediately before this do a `require 'react'` which will load the compatible react js file.
78
+
79
+ If you are using webpack then add `react` to your manifest.
80
+
81
+ If you are not using react-rails then find where you `require 'reactrb'` and immediately before this do a `require 'react-latest'` (or 'react-v13', 'react-v14' or 'react-v15')
82
+
83
+ # Roadmap
84
+
85
+ Upcoming will be an 0.9.x release which will deprecate a number of features and DSL elements. [click for detailed feature list](https://github.com/reactrb/reactrb/milestones/0.9.x)
86
+
87
+ 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.
88
+
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.
75
90
 
76
91
  ## Developing
77
92
 
78
93
  `git clone` the project.
79
94
 
80
- To play with some live examples cd to the project directory then
95
+ To play with some live examples cd to the project directory then
81
96
 
82
97
  2. `cd example/examples`
83
98
  2. `bundle install`
84
99
  3. `bundle exec rackup`
85
- 4. Open `http://localhos:9292`
100
+ 4. Open `http://localhost:9292`
86
101
 
87
- or
102
+ or
88
103
 
89
104
  1. `cd example/rails-tutorial`
90
105
  2. `bundle install`
@@ -113,5 +128,5 @@ really welcome :wink:.
113
128
 
114
129
  ## License
115
130
 
116
- In short, React.rb is available under the MIT license. See the LICENSE file for
131
+ In short, Reactrb is available under the MIT license. See the LICENSE file for
117
132
  more info.
data/config.ru CHANGED
@@ -1,16 +1,23 @@
1
1
  require 'bundler'
2
2
  Bundler.require
3
3
 
4
- require "opal-rspec"
4
+ require "opal/rspec"
5
5
  require "opal-jquery"
6
- #require "react/source"
7
6
 
8
7
  Opal.append_path File.expand_path('../spec', __FILE__)
9
8
 
10
- run Opal::Server.new { |s|
9
+ sprockets_env = Opal::RSpec::SprocketsEnvironment.new
10
+ run Opal::Server.new(sprockets: sprockets_env) { |s|
11
11
  s.main = 'opal/rspec/sprockets_runner'
12
- s.append_path 'spec'
13
- #s.append_path File.dirname(::React::Source.bundled_path_for("react-with-addons.js"))
14
- s.debug = true
12
+ sprockets_env.add_spec_paths_to_sprockets
13
+ s.debug = false
15
14
  s.index_path = 'spec/index.html.erb'
16
15
  }
16
+
17
+ # run Opal::Server.new { |s|
18
+ # s.main = 'opal/rspec/sprockets_runner'
19
+ # s.append_path 'spec'
20
+ # #s.append_path File.dirname(::React::Source.bundled_path_for("react-with-addons.js"))
21
+ # s.debug = true
22
+ # s.index_path = 'spec/index.html.erb'
23
+ # }
@@ -3,7 +3,7 @@ require 'browser/interval' # gives us wrappers on javascript methods such a
3
3
  require 'jquery'
4
4
  require 'opal-jquery' # gives us a nice wrapper on jQuery which we will use mainly for HTTP calls
5
5
  require "json" # json conversions
6
- require 'reactive-ruby' # and the whole reason we are gathered here today!
6
+ require 'reactrb' # and the whole reason we are gathered here today!
7
7
  require 'react-router'
8
8
  require 'reactive-router'
9
9
  require 'basics'
@@ -1,3 +1,3 @@
1
1
  require 'opal'
2
- require 'reactive-ruby'
2
+ require 'reactrb'
3
3
  require_tree './components'
@@ -3,7 +3,7 @@ require 'browser/interval' # gives us wrappers on javascript methods such a
3
3
  require 'jquery'
4
4
  require 'opal-jquery' # gives us a nice wrapper on jQuery which we will use mainly for HTTP calls
5
5
  require "json" # json conversions
6
- require 'reactive-ruby' # and the whole reason we are gathered here today!
6
+ require 'reactrb' # and the whole reason we are gathered here today!
7
7
 
8
8
  Document.ready? do # Document.ready? is a opal-jquery method. The block will run when doc is loaded
9
9
 
@@ -1,4 +1,4 @@
1
1
  require 'opal'
2
2
  require 'react'
3
- require 'reactive-ruby'
3
+ require 'reactrb'
4
4
  require_tree './components'
@@ -7,7 +7,7 @@ require File.expand_path('../boot', __FILE__)
7
7
  Bundler.require(*Rails.groups(assets: %w(development test)))
8
8
 
9
9
  require 'opal-rails'
10
- require 'reactive-ruby'
10
+ require 'reactrb'
11
11
 
12
12
  <%= application_definition %>
13
13
  <% end %>
@@ -85,9 +85,8 @@ module React
85
85
  end
86
86
 
87
87
  class ::Object
88
- alias_method :old_method_missing, :method_missing
89
88
 
90
- ["span", "para", "td", "th", "while_loading"].each do |tag|
89
+ ["span", "td", "th", "while_loading"].each do |tag|
91
90
  define_method(tag) do | *args, &block |
92
91
  args.unshift(tag)
93
92
  return self.method_missing(*args, &block) if self.is_a? React::Component
@@ -1,3 +1,3 @@
1
1
  module React
2
- VERSION = "0.7.42"
2
+ VERSION = "0.8.0"
3
3
  end
data/lib/reactrb.rb CHANGED
@@ -5,19 +5,20 @@ if RUBY_ENGINE == 'opal'
5
5
  raise [
6
6
  "No React.js Available",
7
7
  "",
8
- "React.js must be defined before requiring 'reactive-ruby'",
9
- "'reactive-ruby' has been tested with react v13, v14, and v15.",
8
+ "React.js must be defined before requiring 'reactrb'",
9
+ "'reactrb' has been tested with react v13, v14, and v15.",
10
10
  "",
11
11
  "IF USING 'react-rails':",
12
12
  " add 'require \"react\"' immediately before the 'require \"reactive-ruby\" directive in 'views/components.rb'.",
13
13
  "IF USING WEBPACK:",
14
14
  " add 'react' to your webpack manifest.",
15
15
  "OTHERWISE TO GET THE LATEST TESTED VERSION",
16
- " add 'require \"react-latest\"' immediately before the require of 'reactive-ruby',",
16
+ " add 'require \"react-latest\"' immediately before the require of 'reactrb',",
17
17
  "OR TO USE A SPECIFIC VERSION",
18
- " add 'require \"react-v1x\"' immediately before the require of 'reactive-ruby'."
18
+ " add 'require \"react-v1x\"' immediately before the require of 'reactrb'."
19
19
  ].join("\n")
20
20
  end
21
+ require 'react/hash'
21
22
  require 'react/top_level'
22
23
  require 'react/observable'
23
24
  require 'react/component'
data/reactrb.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
 
10
10
  s.authors = ['David Chang', 'Adam Jahn', 'Mitch VanDuyn']
11
11
  s.email = 'reactrb@catprint.com'
12
- s.homepage = 'https://reactrb.org'
12
+ s.homepage = 'http://reactrb.org'
13
13
  s.summary = 'Opal Ruby wrapper of React.js library.'
14
14
  s.license = 'MIT'
15
15
  s.description = "Write React UI components in pure Ruby."
@@ -24,14 +24,14 @@ Gem::Specification.new do |s|
24
24
  s.add_development_dependency 'rake'
25
25
  s.add_development_dependency 'rspec-rails', '3.3.3'
26
26
  s.add_development_dependency 'timecop'
27
- s.add_development_dependency 'opal-rspec', '0.4.3'
27
+ s.add_development_dependency 'opal-rspec'
28
28
  s.add_development_dependency 'sinatra'
29
29
  s.add_development_dependency 'opal-jquery'
30
30
 
31
31
  # For Test Rails App
32
32
  s.add_development_dependency 'rails', '4.2.4'
33
33
  s.add_development_dependency 'react-rails'
34
- s.add_development_dependency 'opal-rails', '0.8.1'
34
+ s.add_development_dependency 'opal-rails'
35
35
  if RUBY_PLATFORM == 'java'
36
36
  s.add_development_dependency 'jdbc-sqlite3'
37
37
  s.add_development_dependency 'activerecord-jdbcsqlite3-adapter'
data/spec/index.html.erb CHANGED
@@ -3,10 +3,10 @@
3
3
  <head>
4
4
  </head>
5
5
  <body>
6
+ <div id="placeholder" style="display: none"></div>
7
+ <div id="render_here"></div>
6
8
  <%= javascript_include_tag 'vendor/es5-shim.min' %>
7
9
  <%= javascript_include_tag 'vendor/jquery-2.2.4.min' %>
8
10
  <%= javascript_include_tag @server.main %>
9
- <div id="placeholder" style="display: none"></div>
10
- <div id="render_here"></div>
11
11
  </body>
12
12
  </html>
@@ -1,6 +1,12 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  if opal?
4
+
5
+ module TestMod123
6
+ class Bar < React::Component::Base
7
+ end
8
+ end
9
+
4
10
  describe 'the React DSL' do
5
11
 
6
12
  it "will turn the last string in a block into a element" do
@@ -82,8 +88,8 @@ describe 'the React DSL' do
82
88
  end
83
89
 
84
90
  it "can add class names by the haml .class notation" do
85
- stub_const 'Mod::Bar', Class.new(React::Component::Base)
86
- Mod::Bar.class_eval do
91
+ # stub_const 'Mod::Barz', Class.new(React::Component::Base)
92
+ TestMod123::Bar.class_eval do
87
93
  collect_other_params_as :attributes
88
94
  def render
89
95
  "a man walks into a bar".span(attributes)
@@ -92,7 +98,7 @@ describe 'the React DSL' do
92
98
  stub_const 'Foo', Class.new(React::Component::Base)
93
99
  Foo.class_eval do
94
100
  def render
95
- Mod::Bar().the_class
101
+ TestMod123::Bar().the_class
96
102
  end
97
103
  end
98
104
 
@@ -222,38 +222,41 @@ describe 'the param macro' do
222
222
  expect(React.render_to_static_markup(React.create_element(Foo, foo: {bazwoggle: 1}))).to eq('<span>2</span>')
223
223
  end
224
224
 
225
- it "even if contains an embedded native object" do
226
- stub_const "Bar", Class.new(React::Component::Base)
227
- stub_const "BazWoggle", Class.new
228
- BazWoggle.class_eval do
229
- def initialize(kind)
230
- @kind = kind
231
- end
232
- attr_accessor :kind
233
- def self._react_param_conversion(json, validate_only)
234
- new(JSON.from_object(json[0])[:bazwoggle]) if JSON.from_object(json[0])[:bazwoggle]
235
- end
236
- end
237
- Bar.class_eval do
238
- param :foo, type: BazWoggle
239
- def render
240
- params.foo.kind.to_s
241
- end
242
- end
243
- Foo.class_eval do
244
- export_state :change_me
245
- before_mount do
246
- Foo.change_me! "initial"
247
- end
248
- def render
249
- Bar(foo: Native([`{bazwoggle: #{Foo.change_me}}`]))
250
- end
251
- end
252
- div = `document.createElement("div")`
253
- React.render(React.create_element(Foo, {}), div)
254
- Foo.change_me! "updated"
255
- expect(`div.children[0].innerHTML`).to eq("updated")
256
- end
225
+ # bug fixes in 0.9 render this test obsolete (hopefully)
226
+
227
+ # it "even if contains an embedded native object" do
228
+ # stub_const "Bar", Class.new(React::Component::Base)
229
+ # stub_const "BazWoggle", Class.new
230
+ # BazWoggle.class_eval do
231
+ # def initialize(kind)
232
+ # @kind = kind
233
+ # end
234
+ # attr_accessor :kind
235
+ # def self._react_param_conversion(json, validate_only)
236
+ # new(JSON.from_object(json[0])[:bazwoggle]) if JSON.from_object(json[0])[:bazwoggle]
237
+ # end
238
+ # end
239
+ # Bar.class_eval do
240
+ # param :foo, type: BazWoggle
241
+ # def render
242
+ # params.foo.kind.to_s
243
+ # end
244
+ # end
245
+ # Foo.class_eval do
246
+ # export_state :change_me
247
+ # before_mount do
248
+ # Foo.change_me! "initial"
249
+ # end
250
+ # def render
251
+ # foo = [`{bazwoggle: #{Foo.change_me}}`]
252
+ # Bar(foo: foo)
253
+ # end
254
+ # end
255
+ # div = `document.createElement("div")`
256
+ # React.render(React.create_element(Foo, {}), div)
257
+ # Foo.change_me! "updated"
258
+ # expect(`div.children[0].innerHTML`).to eq("updated")
259
+ # end
257
260
  end
258
261
 
259
262
  it "will alias a Proc type param" do
@@ -60,8 +60,7 @@ describe React::Validator do
60
60
  validator = React::Validator.new(Foo).build do
61
61
  requires :foo, type: Array[Fixnum]
62
62
  end
63
-
64
- message = "Provided prop `foo`[0] could not be converted to Numeric"
63
+ message = "Provided prop `foo`[0] could not be converted to #{Fixnum.name}"
65
64
  expect(validator.validate({foo: `[ { x: 1 } ]`})).to eq([message])
66
65
  end
67
66
 
data/spec/spec_helper.rb CHANGED
@@ -16,8 +16,7 @@ end
16
16
  if RUBY_ENGINE == 'opal'
17
17
  require File.expand_path('../vendor/jquery-2.2.4.min', __FILE__)
18
18
  require 'react-latest'
19
- require 'reactive-ruby'
20
-
19
+ require 'reactrb'
21
20
  require File.expand_path('../support/react/spec_helpers', __FILE__)
22
21
 
23
22
  module Opal
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reactrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.42
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Chang
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-06-01 00:00:00.000000000 Z
13
+ date: 2016-06-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: opal
@@ -100,16 +100,16 @@ dependencies:
100
100
  name: opal-rspec
101
101
  requirement: !ruby/object:Gem::Requirement
102
102
  requirements:
103
- - - '='
103
+ - - ">="
104
104
  - !ruby/object:Gem::Version
105
- version: 0.4.3
105
+ version: '0'
106
106
  type: :development
107
107
  prerelease: false
108
108
  version_requirements: !ruby/object:Gem::Requirement
109
109
  requirements:
110
- - - '='
110
+ - - ">="
111
111
  - !ruby/object:Gem::Version
112
- version: 0.4.3
112
+ version: '0'
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: sinatra
115
115
  requirement: !ruby/object:Gem::Requirement
@@ -170,16 +170,16 @@ dependencies:
170
170
  name: opal-rails
171
171
  requirement: !ruby/object:Gem::Requirement
172
172
  requirements:
173
- - - '='
173
+ - - ">="
174
174
  - !ruby/object:Gem::Version
175
- version: 0.8.1
175
+ version: '0'
176
176
  type: :development
177
177
  prerelease: false
178
178
  version_requirements: !ruby/object:Gem::Requirement
179
179
  requirements:
180
- - - '='
180
+ - - ">="
181
181
  - !ruby/object:Gem::Version
182
- version: 0.8.1
182
+ version: '0'
183
183
  - !ruby/object:Gem::Dependency
184
184
  name: sqlite3
185
185
  requirement: !ruby/object:Gem::Requirement
@@ -359,9 +359,6 @@ files:
359
359
  - lib/sources/react-v13.js
360
360
  - lib/sources/react-v14.js
361
361
  - lib/sources/react-v15.js
362
- - logo1.png
363
- - logo2.png
364
- - logo3.png
365
362
  - path_release_steps.md
366
363
  - reactrb.gemspec
367
364
  - spec/controller_helper_spec.rb
@@ -389,7 +386,7 @@ files:
389
386
  - spec/support/react/spec_helpers.rb
390
387
  - spec/vendor/es5-shim.min.js
391
388
  - spec/vendor/jquery-2.2.4.min.js
392
- homepage: https://reactrb.org
389
+ homepage: http://reactrb.org
393
390
  licenses:
394
391
  - MIT
395
392
  metadata: {}
data/logo1.png DELETED
Binary file
data/logo2.png DELETED
Binary file
data/logo3.png DELETED
Binary file