reactive-ruby 0.7.3 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/README.md +67 -229
- data/example/tutorial/.gitignore +17 -0
- data/example/tutorial/Gemfile +51 -0
- data/example/tutorial/Gemfile.lock +211 -0
- data/example/tutorial/Gemfile.xlock +211 -0
- data/example/tutorial/README.rdoc +28 -0
- data/example/tutorial/Rakefile +6 -0
- data/example/tutorial/app/assets/images/.keep +0 -0
- data/example/tutorial/app/assets/javascripts/application.rb +10 -0
- data/example/tutorial/app/assets/stylesheets/application.css +15 -0
- data/example/tutorial/app/controllers/application_controller.rb +6 -0
- data/example/tutorial/app/controllers/concerns/.keep +0 -0
- data/example/tutorial/app/controllers/home_controller.rb +6 -0
- data/example/tutorial/app/helpers/application_helper.rb +2 -0
- data/example/tutorial/app/mailers/.keep +0 -0
- data/example/tutorial/app/models/.keep +0 -0
- data/example/tutorial/app/models/concerns/.keep +0 -0
- data/example/tutorial/app/views/components.rb +3 -0
- data/example/tutorial/app/views/components/home/show.rb +18 -0
- data/example/tutorial/app/views/layouts/application.html.erb +14 -0
- data/example/tutorial/bin/bundle +3 -0
- data/example/tutorial/bin/rails +8 -0
- data/example/tutorial/bin/rake +8 -0
- data/example/tutorial/bin/setup +29 -0
- data/example/tutorial/bin/spring +15 -0
- data/example/tutorial/config.ru +4 -0
- data/example/tutorial/config/application.rb +26 -0
- data/example/tutorial/config/boot.rb +3 -0
- data/example/tutorial/config/database.yml +25 -0
- data/example/tutorial/config/environment.rb +5 -0
- data/example/tutorial/config/environments/development.rb +41 -0
- data/example/tutorial/config/environments/production.rb +79 -0
- data/example/tutorial/config/environments/test.rb +42 -0
- data/example/tutorial/config/initializers/assets.rb +11 -0
- data/example/tutorial/config/initializers/backtrace_silencers.rb +7 -0
- data/example/tutorial/config/initializers/cookies_serializer.rb +3 -0
- data/example/tutorial/config/initializers/filter_parameter_logging.rb +4 -0
- data/example/tutorial/config/initializers/inflections.rb +16 -0
- data/example/tutorial/config/initializers/mime_types.rb +4 -0
- data/example/tutorial/config/initializers/session_store.rb +3 -0
- data/example/tutorial/config/initializers/wrap_parameters.rb +14 -0
- data/example/tutorial/config/locales/en.yml +23 -0
- data/example/tutorial/config/routes.rb +59 -0
- data/example/tutorial/config/secrets.yml +22 -0
- data/example/tutorial/db/seeds.rb +7 -0
- data/example/tutorial/lib/assets/.keep +0 -0
- data/example/tutorial/lib/tasks/.keep +0 -0
- data/example/tutorial/log/.keep +0 -0
- data/example/tutorial/public/404.html +67 -0
- data/example/tutorial/public/422.html +67 -0
- data/example/tutorial/public/500.html +66 -0
- data/example/tutorial/public/favicon.ico +0 -0
- data/example/tutorial/public/robots.txt +5 -0
- data/example/tutorial/test/controllers/.keep +0 -0
- data/example/tutorial/test/fixtures/.keep +0 -0
- data/example/tutorial/test/helpers/.keep +0 -0
- data/example/tutorial/test/integration/.keep +0 -0
- data/example/tutorial/test/mailers/.keep +0 -0
- data/example/tutorial/test/models/.keep +0 -0
- data/example/tutorial/test/test_helper.rb +10 -0
- data/example/tutorial/vendor/assets/javascripts/.keep +0 -0
- data/example/tutorial/vendor/assets/stylesheets/.keep +0 -0
- data/lib/rails-helpers/react_component.rb +19 -1
- data/lib/reactive-ruby.rb +9 -0
- data/lib/reactive-ruby/version.rb +1 -1
- data/old-readme +220 -0
- data/reactive-ruby.gemspec +5 -2
- metadata +87 -12
- data/Gemfile.lock +0 -53
@@ -0,0 +1,211 @@
|
|
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
|
@@ -0,0 +1,211 @@
|
|
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
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|