reactive-ruby 0.7.4 → 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +101 -0
- data/README.md +19 -11
- data/example/{tutorial → rails-tutorial}/.gitignore +0 -0
- data/example/{tutorial → rails-tutorial}/Gemfile +0 -0
- data/example/{tutorial → rails-tutorial}/Gemfile.lock +2 -2
- data/example/{tutorial → rails-tutorial}/README.rdoc +0 -0
- data/example/{tutorial → rails-tutorial}/Rakefile +0 -0
- data/example/{tutorial → rails-tutorial}/app/assets/images/.keep +0 -0
- data/example/rails-tutorial/app/assets/javascripts/application.rb +15 -0
- data/example/{tutorial → rails-tutorial}/app/assets/stylesheets/application.css +0 -0
- data/example/{tutorial → rails-tutorial}/app/controllers/application_controller.rb +0 -0
- data/example/{tutorial → rails-tutorial}/app/controllers/concerns/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/app/controllers/home_controller.rb +0 -0
- data/example/{tutorial → rails-tutorial}/app/helpers/application_helper.rb +0 -0
- data/example/{tutorial → rails-tutorial}/app/mailers/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/app/models/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/app/models/concerns/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/app/views/components.rb +0 -0
- data/example/{tutorial → rails-tutorial}/app/views/components/home/show.rb +0 -0
- data/example/{tutorial → rails-tutorial}/app/views/layouts/application.html.erb +0 -0
- data/example/{tutorial → rails-tutorial}/bin/bundle +0 -0
- data/example/{tutorial → rails-tutorial}/bin/rails +0 -0
- data/example/{tutorial → rails-tutorial}/bin/rake +0 -0
- data/example/{tutorial → rails-tutorial}/bin/setup +0 -0
- data/example/{tutorial → rails-tutorial}/bin/spring +0 -0
- data/example/{tutorial → rails-tutorial}/config.ru +0 -0
- data/example/{tutorial → rails-tutorial}/config/application.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/boot.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/database.yml +0 -0
- data/example/{tutorial → rails-tutorial}/config/environment.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/environments/development.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/environments/production.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/environments/test.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/assets.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/backtrace_silencers.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/cookies_serializer.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/filter_parameter_logging.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/inflections.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/mime_types.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/session_store.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/initializers/wrap_parameters.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/locales/en.yml +0 -0
- data/example/{tutorial → rails-tutorial}/config/routes.rb +0 -0
- data/example/{tutorial → rails-tutorial}/config/secrets.yml +0 -0
- data/example/{tutorial → rails-tutorial}/db/seeds.rb +0 -0
- data/example/{tutorial → rails-tutorial}/lib/assets/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/lib/tasks/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/log/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/public/404.html +0 -0
- data/example/{tutorial → rails-tutorial}/public/422.html +0 -0
- data/example/{tutorial → rails-tutorial}/public/500.html +0 -0
- data/example/{tutorial → rails-tutorial}/public/favicon.ico +0 -0
- data/example/{tutorial → rails-tutorial}/public/robots.txt +0 -0
- data/example/{tutorial → rails-tutorial}/test/controllers/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/fixtures/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/helpers/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/integration/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/mailers/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/models/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/test/test_helper.rb +0 -0
- data/example/{tutorial → rails-tutorial}/vendor/assets/javascripts/.keep +0 -0
- data/example/{tutorial → rails-tutorial}/vendor/assets/stylesheets/.keep +0 -0
- data/example/sinatra-tutorial/.DS_Store +0 -0
- data/example/sinatra-tutorial/Gemfile +5 -0
- data/example/sinatra-tutorial/Gemfile.lock +101 -0
- data/example/{react-tutorial → sinatra-tutorial}/README.md +0 -0
- data/example/sinatra-tutorial/_comments.json +38 -0
- data/example/{react-tutorial/example.js.rb → sinatra-tutorial/app/example.rb} +3 -2
- data/example/sinatra-tutorial/app/jquery.js +5 -0
- data/example/{react-tutorial → sinatra-tutorial}/config.ru +1 -6
- data/example/{react-tutorial → sinatra-tutorial}/public/base.css +0 -0
- data/lib/reactive-ruby.rb +1 -7
- data/lib/reactive-ruby/version.rb +1 -1
- data/lib/sources/react.js +19801 -0
- data/reactive-ruby.gemspec +3 -2
- metadata +74 -85
- data/example/react-tutorial/Gemfile +0 -7
- data/example/react-tutorial/Gemfile.lock +0 -49
- data/example/react-tutorial/_comments.json +0 -14
- data/example/tutorial/Gemfile.xlock +0 -211
- data/example/tutorial/app/assets/javascripts/application.rb +0 -10
data/reactive-ruby.gemspec
CHANGED
@@ -20,9 +20,10 @@ Gem::Specification.new do |s|
|
|
20
20
|
|
21
21
|
s.add_runtime_dependency 'opal'#, '~> 0.7.0'
|
22
22
|
s.add_runtime_dependency 'opal-activesupport'
|
23
|
-
s.add_runtime_dependency '
|
23
|
+
s.add_runtime_dependency 'jquery-rails'
|
24
|
+
#s.add_runtime_dependency 'opal-jquery'
|
24
25
|
s.add_runtime_dependency 'opal-browser'
|
25
|
-
s.
|
26
|
+
#s.add_runtime_dependency 'react-source', '~> 0.12'
|
26
27
|
s.add_development_dependency 'opal-rspec'
|
27
28
|
s.add_development_dependency 'sinatra'
|
28
29
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reactive-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: jquery-rails
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -66,20 +66,6 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: react-source
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0.12'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0.12'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: opal-rspec
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,6 +103,7 @@ extra_rdoc_files: []
|
|
117
103
|
files:
|
118
104
|
- ".gitignore"
|
119
105
|
- Gemfile
|
106
|
+
- Gemfile.lock
|
120
107
|
- LICENSE
|
121
108
|
- README.md
|
122
109
|
- config.ru
|
@@ -124,13 +111,75 @@ files:
|
|
124
111
|
- example/examples/Gemfile.lock
|
125
112
|
- example/examples/config.ru
|
126
113
|
- example/examples/hello.js.rb
|
127
|
-
- example/
|
128
|
-
- example/
|
129
|
-
- example/
|
130
|
-
- example/
|
131
|
-
- example/
|
132
|
-
- example/
|
133
|
-
- example/
|
114
|
+
- example/rails-tutorial/.gitignore
|
115
|
+
- example/rails-tutorial/Gemfile
|
116
|
+
- example/rails-tutorial/Gemfile.lock
|
117
|
+
- example/rails-tutorial/README.rdoc
|
118
|
+
- example/rails-tutorial/Rakefile
|
119
|
+
- example/rails-tutorial/app/assets/images/.keep
|
120
|
+
- example/rails-tutorial/app/assets/javascripts/application.rb
|
121
|
+
- example/rails-tutorial/app/assets/stylesheets/application.css
|
122
|
+
- example/rails-tutorial/app/controllers/application_controller.rb
|
123
|
+
- example/rails-tutorial/app/controllers/concerns/.keep
|
124
|
+
- example/rails-tutorial/app/controllers/home_controller.rb
|
125
|
+
- example/rails-tutorial/app/helpers/application_helper.rb
|
126
|
+
- example/rails-tutorial/app/mailers/.keep
|
127
|
+
- example/rails-tutorial/app/models/.keep
|
128
|
+
- example/rails-tutorial/app/models/concerns/.keep
|
129
|
+
- example/rails-tutorial/app/views/components.rb
|
130
|
+
- example/rails-tutorial/app/views/components/home/show.rb
|
131
|
+
- example/rails-tutorial/app/views/layouts/application.html.erb
|
132
|
+
- example/rails-tutorial/bin/bundle
|
133
|
+
- example/rails-tutorial/bin/rails
|
134
|
+
- example/rails-tutorial/bin/rake
|
135
|
+
- example/rails-tutorial/bin/setup
|
136
|
+
- example/rails-tutorial/bin/spring
|
137
|
+
- example/rails-tutorial/config.ru
|
138
|
+
- example/rails-tutorial/config/application.rb
|
139
|
+
- example/rails-tutorial/config/boot.rb
|
140
|
+
- example/rails-tutorial/config/database.yml
|
141
|
+
- example/rails-tutorial/config/environment.rb
|
142
|
+
- example/rails-tutorial/config/environments/development.rb
|
143
|
+
- example/rails-tutorial/config/environments/production.rb
|
144
|
+
- example/rails-tutorial/config/environments/test.rb
|
145
|
+
- example/rails-tutorial/config/initializers/assets.rb
|
146
|
+
- example/rails-tutorial/config/initializers/backtrace_silencers.rb
|
147
|
+
- example/rails-tutorial/config/initializers/cookies_serializer.rb
|
148
|
+
- example/rails-tutorial/config/initializers/filter_parameter_logging.rb
|
149
|
+
- example/rails-tutorial/config/initializers/inflections.rb
|
150
|
+
- example/rails-tutorial/config/initializers/mime_types.rb
|
151
|
+
- example/rails-tutorial/config/initializers/session_store.rb
|
152
|
+
- example/rails-tutorial/config/initializers/wrap_parameters.rb
|
153
|
+
- example/rails-tutorial/config/locales/en.yml
|
154
|
+
- example/rails-tutorial/config/routes.rb
|
155
|
+
- example/rails-tutorial/config/secrets.yml
|
156
|
+
- example/rails-tutorial/db/seeds.rb
|
157
|
+
- example/rails-tutorial/lib/assets/.keep
|
158
|
+
- example/rails-tutorial/lib/tasks/.keep
|
159
|
+
- example/rails-tutorial/log/.keep
|
160
|
+
- example/rails-tutorial/public/404.html
|
161
|
+
- example/rails-tutorial/public/422.html
|
162
|
+
- example/rails-tutorial/public/500.html
|
163
|
+
- example/rails-tutorial/public/favicon.ico
|
164
|
+
- example/rails-tutorial/public/robots.txt
|
165
|
+
- example/rails-tutorial/test/controllers/.keep
|
166
|
+
- example/rails-tutorial/test/fixtures/.keep
|
167
|
+
- example/rails-tutorial/test/helpers/.keep
|
168
|
+
- example/rails-tutorial/test/integration/.keep
|
169
|
+
- example/rails-tutorial/test/mailers/.keep
|
170
|
+
- example/rails-tutorial/test/models/.keep
|
171
|
+
- example/rails-tutorial/test/test_helper.rb
|
172
|
+
- example/rails-tutorial/vendor/assets/javascripts/.keep
|
173
|
+
- example/rails-tutorial/vendor/assets/stylesheets/.keep
|
174
|
+
- example/sinatra-tutorial/.DS_Store
|
175
|
+
- example/sinatra-tutorial/Gemfile
|
176
|
+
- example/sinatra-tutorial/Gemfile.lock
|
177
|
+
- example/sinatra-tutorial/README.md
|
178
|
+
- example/sinatra-tutorial/_comments.json
|
179
|
+
- example/sinatra-tutorial/app/example.rb
|
180
|
+
- example/sinatra-tutorial/app/jquery.js
|
181
|
+
- example/sinatra-tutorial/config.ru
|
182
|
+
- example/sinatra-tutorial/public/base.css
|
134
183
|
- example/todos/Gemfile
|
135
184
|
- example/todos/Gemfile.lock
|
136
185
|
- example/todos/README.md
|
@@ -147,67 +196,6 @@ files:
|
|
147
196
|
- example/todos/vendor/base.css
|
148
197
|
- example/todos/vendor/bg.png
|
149
198
|
- example/todos/vendor/jquery.js
|
150
|
-
- example/tutorial/.gitignore
|
151
|
-
- example/tutorial/Gemfile
|
152
|
-
- example/tutorial/Gemfile.lock
|
153
|
-
- example/tutorial/Gemfile.xlock
|
154
|
-
- example/tutorial/README.rdoc
|
155
|
-
- example/tutorial/Rakefile
|
156
|
-
- example/tutorial/app/assets/images/.keep
|
157
|
-
- example/tutorial/app/assets/javascripts/application.rb
|
158
|
-
- example/tutorial/app/assets/stylesheets/application.css
|
159
|
-
- example/tutorial/app/controllers/application_controller.rb
|
160
|
-
- example/tutorial/app/controllers/concerns/.keep
|
161
|
-
- example/tutorial/app/controllers/home_controller.rb
|
162
|
-
- example/tutorial/app/helpers/application_helper.rb
|
163
|
-
- example/tutorial/app/mailers/.keep
|
164
|
-
- example/tutorial/app/models/.keep
|
165
|
-
- example/tutorial/app/models/concerns/.keep
|
166
|
-
- example/tutorial/app/views/components.rb
|
167
|
-
- example/tutorial/app/views/components/home/show.rb
|
168
|
-
- example/tutorial/app/views/layouts/application.html.erb
|
169
|
-
- example/tutorial/bin/bundle
|
170
|
-
- example/tutorial/bin/rails
|
171
|
-
- example/tutorial/bin/rake
|
172
|
-
- example/tutorial/bin/setup
|
173
|
-
- example/tutorial/bin/spring
|
174
|
-
- example/tutorial/config.ru
|
175
|
-
- example/tutorial/config/application.rb
|
176
|
-
- example/tutorial/config/boot.rb
|
177
|
-
- example/tutorial/config/database.yml
|
178
|
-
- example/tutorial/config/environment.rb
|
179
|
-
- example/tutorial/config/environments/development.rb
|
180
|
-
- example/tutorial/config/environments/production.rb
|
181
|
-
- example/tutorial/config/environments/test.rb
|
182
|
-
- example/tutorial/config/initializers/assets.rb
|
183
|
-
- example/tutorial/config/initializers/backtrace_silencers.rb
|
184
|
-
- example/tutorial/config/initializers/cookies_serializer.rb
|
185
|
-
- example/tutorial/config/initializers/filter_parameter_logging.rb
|
186
|
-
- example/tutorial/config/initializers/inflections.rb
|
187
|
-
- example/tutorial/config/initializers/mime_types.rb
|
188
|
-
- example/tutorial/config/initializers/session_store.rb
|
189
|
-
- example/tutorial/config/initializers/wrap_parameters.rb
|
190
|
-
- example/tutorial/config/locales/en.yml
|
191
|
-
- example/tutorial/config/routes.rb
|
192
|
-
- example/tutorial/config/secrets.yml
|
193
|
-
- example/tutorial/db/seeds.rb
|
194
|
-
- example/tutorial/lib/assets/.keep
|
195
|
-
- example/tutorial/lib/tasks/.keep
|
196
|
-
- example/tutorial/log/.keep
|
197
|
-
- example/tutorial/public/404.html
|
198
|
-
- example/tutorial/public/422.html
|
199
|
-
- example/tutorial/public/500.html
|
200
|
-
- example/tutorial/public/favicon.ico
|
201
|
-
- example/tutorial/public/robots.txt
|
202
|
-
- example/tutorial/test/controllers/.keep
|
203
|
-
- example/tutorial/test/fixtures/.keep
|
204
|
-
- example/tutorial/test/helpers/.keep
|
205
|
-
- example/tutorial/test/integration/.keep
|
206
|
-
- example/tutorial/test/mailers/.keep
|
207
|
-
- example/tutorial/test/models/.keep
|
208
|
-
- example/tutorial/test/test_helper.rb
|
209
|
-
- example/tutorial/vendor/assets/javascripts/.keep
|
210
|
-
- example/tutorial/vendor/assets/stylesheets/.keep
|
211
199
|
- lib/rails-helpers/react_component.rb
|
212
200
|
- lib/reactive-ruby.rb
|
213
201
|
- lib/reactive-ruby/api.rb
|
@@ -225,6 +213,7 @@ files:
|
|
225
213
|
- lib/reactive-ruby/top_level.rb
|
226
214
|
- lib/reactive-ruby/validator.rb
|
227
215
|
- lib/reactive-ruby/version.rb
|
216
|
+
- lib/sources/react.js
|
228
217
|
- logo1.png
|
229
218
|
- logo2.png
|
230
219
|
- logo3.png
|
@@ -1,49 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
opal-react (0.2.1)
|
5
|
-
opal
|
6
|
-
opal-activesupport
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
hike (1.2.3)
|
12
|
-
opal (0.8.0)
|
13
|
-
hike (~> 1.2)
|
14
|
-
sourcemap (~> 0.1.0)
|
15
|
-
sprockets (~> 3.1)
|
16
|
-
tilt (>= 1.4)
|
17
|
-
opal-activesupport (0.1.0)
|
18
|
-
opal (>= 0.5.0, < 1.0.0)
|
19
|
-
opal-browser (0.1.0.beta1)
|
20
|
-
opal (>= 0.5.5)
|
21
|
-
paggio
|
22
|
-
opal-jquery (0.4.0)
|
23
|
-
opal (>= 0.7.0, < 0.9.0)
|
24
|
-
paggio (0.2.4)
|
25
|
-
rack (1.6.4)
|
26
|
-
rack-protection (1.5.3)
|
27
|
-
rack
|
28
|
-
react-source (0.13.3)
|
29
|
-
sinatra (1.4.6)
|
30
|
-
rack (~> 1.4)
|
31
|
-
rack-protection (~> 1.4)
|
32
|
-
tilt (>= 1.3, < 3)
|
33
|
-
sourcemap (0.1.1)
|
34
|
-
sprockets (3.2.0)
|
35
|
-
rack (~> 1.0)
|
36
|
-
tilt (2.0.1)
|
37
|
-
|
38
|
-
PLATFORMS
|
39
|
-
ruby
|
40
|
-
|
41
|
-
DEPENDENCIES
|
42
|
-
opal-browser
|
43
|
-
opal-jquery
|
44
|
-
opal-react!
|
45
|
-
react-source
|
46
|
-
sinatra
|
47
|
-
|
48
|
-
BUNDLED WITH
|
49
|
-
1.10.2
|
@@ -1,211 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/catprintlabs/react-rails.git
|
3
|
-
revision: 98a8d903a51065c8e3ffedeb094d72a2e9883176
|
4
|
-
branch: isomorphic-methods-support
|
5
|
-
specs:
|
6
|
-
react-rails (1.0.0)
|
7
|
-
coffee-script-source (~> 1.8)
|
8
|
-
connection_pool
|
9
|
-
execjs
|
10
|
-
rails (>= 3.2)
|
11
|
-
tilt
|
12
|
-
|
13
|
-
PATH
|
14
|
-
remote: ../..
|
15
|
-
specs:
|
16
|
-
reactive-ruby (0.7.3)
|
17
|
-
opal
|
18
|
-
opal-activesupport
|
19
|
-
opal-browser
|
20
|
-
opal-jquery
|
21
|
-
|
22
|
-
GEM
|
23
|
-
remote: https://rubygems.org/
|
24
|
-
specs:
|
25
|
-
actionmailer (4.2.3)
|
26
|
-
actionpack (= 4.2.3)
|
27
|
-
actionview (= 4.2.3)
|
28
|
-
activejob (= 4.2.3)
|
29
|
-
mail (~> 2.5, >= 2.5.4)
|
30
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
31
|
-
actionpack (4.2.3)
|
32
|
-
actionview (= 4.2.3)
|
33
|
-
activesupport (= 4.2.3)
|
34
|
-
rack (~> 1.6)
|
35
|
-
rack-test (~> 0.6.2)
|
36
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
37
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
38
|
-
actionview (4.2.3)
|
39
|
-
activesupport (= 4.2.3)
|
40
|
-
builder (~> 3.1)
|
41
|
-
erubis (~> 2.7.0)
|
42
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
43
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
44
|
-
activejob (4.2.3)
|
45
|
-
activesupport (= 4.2.3)
|
46
|
-
globalid (>= 0.3.0)
|
47
|
-
activemodel (4.2.3)
|
48
|
-
activesupport (= 4.2.3)
|
49
|
-
builder (~> 3.1)
|
50
|
-
activerecord (4.2.3)
|
51
|
-
activemodel (= 4.2.3)
|
52
|
-
activesupport (= 4.2.3)
|
53
|
-
arel (~> 6.0)
|
54
|
-
activesupport (4.2.3)
|
55
|
-
i18n (~> 0.7)
|
56
|
-
json (~> 1.7, >= 1.7.7)
|
57
|
-
minitest (~> 5.1)
|
58
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
59
|
-
tzinfo (~> 1.1)
|
60
|
-
arel (6.0.3)
|
61
|
-
binding_of_caller (0.7.2)
|
62
|
-
debug_inspector (>= 0.0.1)
|
63
|
-
builder (3.2.2)
|
64
|
-
byebug (6.0.2)
|
65
|
-
coffee-rails (4.1.0)
|
66
|
-
coffee-script (>= 2.2.0)
|
67
|
-
railties (>= 4.0.0, < 5.0)
|
68
|
-
coffee-script (2.4.1)
|
69
|
-
coffee-script-source
|
70
|
-
execjs
|
71
|
-
coffee-script-source (1.9.1.1)
|
72
|
-
connection_pool (2.2.0)
|
73
|
-
debug_inspector (0.0.2)
|
74
|
-
erubis (2.7.0)
|
75
|
-
execjs (2.6.0)
|
76
|
-
globalid (0.3.6)
|
77
|
-
activesupport (>= 4.1.0)
|
78
|
-
hike (1.2.3)
|
79
|
-
i18n (0.7.0)
|
80
|
-
jbuilder (2.3.1)
|
81
|
-
activesupport (>= 3.0.0, < 5)
|
82
|
-
multi_json (~> 1.2)
|
83
|
-
jquery-rails (4.0.4)
|
84
|
-
rails-dom-testing (~> 1.0)
|
85
|
-
railties (>= 4.2.0)
|
86
|
-
thor (>= 0.14, < 2.0)
|
87
|
-
json (1.8.3)
|
88
|
-
libv8 (3.16.14.11)
|
89
|
-
loofah (2.0.3)
|
90
|
-
nokogiri (>= 1.5.9)
|
91
|
-
mail (2.6.3)
|
92
|
-
mime-types (>= 1.16, < 3)
|
93
|
-
mime-types (2.6.1)
|
94
|
-
mini_portile (0.6.2)
|
95
|
-
minitest (5.8.0)
|
96
|
-
multi_json (1.11.2)
|
97
|
-
nokogiri (1.6.6.2)
|
98
|
-
mini_portile (~> 0.6.0)
|
99
|
-
opal (0.8.0)
|
100
|
-
hike (~> 1.2)
|
101
|
-
sourcemap (~> 0.1.0)
|
102
|
-
sprockets (~> 3.1)
|
103
|
-
tilt (>= 1.4)
|
104
|
-
opal-activesupport (0.1.0)
|
105
|
-
opal (>= 0.5.0, < 1.0.0)
|
106
|
-
opal-browser (0.2.0)
|
107
|
-
opal
|
108
|
-
paggio
|
109
|
-
opal-jquery (0.4.0)
|
110
|
-
opal (>= 0.7.0, < 0.9.0)
|
111
|
-
opal-rails (0.8.0)
|
112
|
-
jquery-rails
|
113
|
-
opal (~> 0.8.0)
|
114
|
-
opal-activesupport (>= 0.0.5)
|
115
|
-
opal-jquery (~> 0.4.0)
|
116
|
-
opal-rspec (~> 0.4.3)
|
117
|
-
rails (>= 3.2, < 5.0)
|
118
|
-
opal-rspec (0.4.3)
|
119
|
-
opal (>= 0.7.0, < 0.9)
|
120
|
-
paggio (0.2.4)
|
121
|
-
rack (1.6.4)
|
122
|
-
rack-test (0.6.3)
|
123
|
-
rack (>= 1.0)
|
124
|
-
rails (4.2.3)
|
125
|
-
actionmailer (= 4.2.3)
|
126
|
-
actionpack (= 4.2.3)
|
127
|
-
actionview (= 4.2.3)
|
128
|
-
activejob (= 4.2.3)
|
129
|
-
activemodel (= 4.2.3)
|
130
|
-
activerecord (= 4.2.3)
|
131
|
-
activesupport (= 4.2.3)
|
132
|
-
bundler (>= 1.3.0, < 2.0)
|
133
|
-
railties (= 4.2.3)
|
134
|
-
sprockets-rails
|
135
|
-
rails-deprecated_sanitizer (1.0.3)
|
136
|
-
activesupport (>= 4.2.0.alpha)
|
137
|
-
rails-dom-testing (1.0.7)
|
138
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
139
|
-
nokogiri (~> 1.6.0)
|
140
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
141
|
-
rails-html-sanitizer (1.0.2)
|
142
|
-
loofah (~> 2.0)
|
143
|
-
railties (4.2.3)
|
144
|
-
actionpack (= 4.2.3)
|
145
|
-
activesupport (= 4.2.3)
|
146
|
-
rake (>= 0.8.7)
|
147
|
-
thor (>= 0.18.1, < 2.0)
|
148
|
-
rake (10.4.2)
|
149
|
-
rdoc (4.2.0)
|
150
|
-
ref (2.0.0)
|
151
|
-
sass (3.4.16)
|
152
|
-
sass-rails (5.0.3)
|
153
|
-
railties (>= 4.0.0, < 5.0)
|
154
|
-
sass (~> 3.1)
|
155
|
-
sprockets (>= 2.8, < 4.0)
|
156
|
-
sprockets-rails (>= 2.0, < 4.0)
|
157
|
-
tilt (~> 1.1)
|
158
|
-
sdoc (0.4.1)
|
159
|
-
json (~> 1.7, >= 1.7.7)
|
160
|
-
rdoc (~> 4.0)
|
161
|
-
sourcemap (0.1.1)
|
162
|
-
spring (1.3.6)
|
163
|
-
sprockets (3.3.2)
|
164
|
-
rack (~> 1.0)
|
165
|
-
sprockets-rails (2.3.2)
|
166
|
-
actionpack (>= 3.0)
|
167
|
-
activesupport (>= 3.0)
|
168
|
-
sprockets (>= 2.8, < 4.0)
|
169
|
-
sqlite3 (1.3.10)
|
170
|
-
therubyracer (0.12.2)
|
171
|
-
libv8 (~> 3.16.14.0)
|
172
|
-
ref
|
173
|
-
thor (0.19.1)
|
174
|
-
thread_safe (0.3.5)
|
175
|
-
tilt (1.4.1)
|
176
|
-
turbolinks (2.5.3)
|
177
|
-
coffee-rails
|
178
|
-
tzinfo (1.2.2)
|
179
|
-
thread_safe (~> 0.1)
|
180
|
-
uglifier (2.7.1)
|
181
|
-
execjs (>= 0.3.0)
|
182
|
-
json (>= 1.8.0)
|
183
|
-
web-console (2.2.1)
|
184
|
-
activemodel (>= 4.0)
|
185
|
-
binding_of_caller (>= 0.7.2)
|
186
|
-
railties (>= 4.0)
|
187
|
-
sprockets-rails (>= 2.0, < 4.0)
|
188
|
-
|
189
|
-
PLATFORMS
|
190
|
-
ruby
|
191
|
-
|
192
|
-
DEPENDENCIES
|
193
|
-
byebug
|
194
|
-
coffee-rails (~> 4.1.0)
|
195
|
-
jbuilder (~> 2.0)
|
196
|
-
jquery-rails
|
197
|
-
opal-rails
|
198
|
-
rails (= 4.2.3)
|
199
|
-
react-rails!
|
200
|
-
reactive-ruby!
|
201
|
-
sass-rails (~> 5.0)
|
202
|
-
sdoc (~> 0.4.0)
|
203
|
-
spring
|
204
|
-
sqlite3
|
205
|
-
therubyracer
|
206
|
-
turbolinks
|
207
|
-
uglifier (>= 1.3.0)
|
208
|
-
web-console (~> 2.0)
|
209
|
-
|
210
|
-
BUNDLED WITH
|
211
|
-
1.10.6
|