hyper-model 0.6.0

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.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +42 -0
  3. data/CODE_OF_CONDUCT.md +49 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +358 -0
  6. data/LICENSE +21 -0
  7. data/README.md +2 -0
  8. data/Rakefile +2 -0
  9. data/examples/chat-app/.gitignore +21 -0
  10. data/examples/chat-app/Gemfile +62 -0
  11. data/examples/chat-app/Gemfile.lock +309 -0
  12. data/examples/chat-app/README.md +3 -0
  13. data/examples/chat-app/Rakefile +6 -0
  14. data/examples/chat-app/app/assets/config/manifest.js +3 -0
  15. data/examples/chat-app/app/assets/images/.keep +0 -0
  16. data/examples/chat-app/app/assets/javascripts/application.js +3 -0
  17. data/examples/chat-app/app/assets/stylesheets/application.scss +33 -0
  18. data/examples/chat-app/app/controllers/application_controller.rb +3 -0
  19. data/examples/chat-app/app/controllers/home_controller.rb +5 -0
  20. data/examples/chat-app/app/hyperloop/components/app.rb +12 -0
  21. data/examples/chat-app/app/hyperloop/components/formatted_div.rb +15 -0
  22. data/examples/chat-app/app/hyperloop/components/input_box.rb +26 -0
  23. data/examples/chat-app/app/hyperloop/components/message.rb +29 -0
  24. data/examples/chat-app/app/hyperloop/components/messages.rb +8 -0
  25. data/examples/chat-app/app/hyperloop/components/nav.rb +30 -0
  26. data/examples/chat-app/app/hyperloop/models/application_record.rb +3 -0
  27. data/examples/chat-app/app/hyperloop/models/message.rb +6 -0
  28. data/examples/chat-app/app/hyperloop/operations/operations.rb +13 -0
  29. data/examples/chat-app/app/hyperloop/stores/message_store.rb +17 -0
  30. data/examples/chat-app/app/policies/application_policy.rb +9 -0
  31. data/examples/chat-app/app/views/layouts/application.html.erb +12 -0
  32. data/examples/chat-app/bin/bundle +3 -0
  33. data/examples/chat-app/bin/rails +9 -0
  34. data/examples/chat-app/bin/rake +9 -0
  35. data/examples/chat-app/bin/setup +34 -0
  36. data/examples/chat-app/bin/spring +17 -0
  37. data/examples/chat-app/bin/update +29 -0
  38. data/examples/chat-app/config.ru +5 -0
  39. data/examples/chat-app/config/application.rb +12 -0
  40. data/examples/chat-app/config/boot.rb +3 -0
  41. data/examples/chat-app/config/cable.yml +9 -0
  42. data/examples/chat-app/config/database.yml +25 -0
  43. data/examples/chat-app/config/environment.rb +5 -0
  44. data/examples/chat-app/config/environments/development.rb +56 -0
  45. data/examples/chat-app/config/environments/production.rb +86 -0
  46. data/examples/chat-app/config/environments/test.rb +42 -0
  47. data/examples/chat-app/config/initializers/application_controller_renderer.rb +6 -0
  48. data/examples/chat-app/config/initializers/assets.rb +11 -0
  49. data/examples/chat-app/config/initializers/backtrace_silencers.rb +7 -0
  50. data/examples/chat-app/config/initializers/cookies_serializer.rb +5 -0
  51. data/examples/chat-app/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/examples/chat-app/config/initializers/hyperloop.rb +6 -0
  53. data/examples/chat-app/config/initializers/inflections.rb +16 -0
  54. data/examples/chat-app/config/initializers/mime_types.rb +4 -0
  55. data/examples/chat-app/config/initializers/new_framework_defaults.rb +24 -0
  56. data/examples/chat-app/config/initializers/session_store.rb +3 -0
  57. data/examples/chat-app/config/initializers/wrap_parameters.rb +14 -0
  58. data/examples/chat-app/config/locales/en.yml +23 -0
  59. data/examples/chat-app/config/puma.rb +47 -0
  60. data/examples/chat-app/config/routes.rb +5 -0
  61. data/examples/chat-app/config/secrets.yml +22 -0
  62. data/examples/chat-app/config/spring.rb +6 -0
  63. data/examples/chat-app/db/migrate/20170319194429_create_message.rb +9 -0
  64. data/examples/chat-app/db/schema.rb +48 -0
  65. data/examples/chat-app/db/seeds.rb +7 -0
  66. data/examples/chat-app/lib/assets/.keep +0 -0
  67. data/examples/chat-app/lib/tasks/.keep +0 -0
  68. data/examples/chat-app/log/.keep +0 -0
  69. data/examples/chat-app/public/404.html +67 -0
  70. data/examples/chat-app/public/422.html +67 -0
  71. data/examples/chat-app/public/500.html +66 -0
  72. data/examples/chat-app/public/apple-touch-icon-precomposed.png +0 -0
  73. data/examples/chat-app/public/apple-touch-icon.png +0 -0
  74. data/examples/chat-app/public/favicon.ico +0 -0
  75. data/examples/chat-app/public/robots.txt +5 -0
  76. data/examples/chat-app/test/controllers/.keep +0 -0
  77. data/examples/chat-app/test/fixtures/.keep +0 -0
  78. data/examples/chat-app/test/fixtures/files/.keep +0 -0
  79. data/examples/chat-app/test/helpers/.keep +0 -0
  80. data/examples/chat-app/test/integration/.keep +0 -0
  81. data/examples/chat-app/test/mailers/.keep +0 -0
  82. data/examples/chat-app/test/models/.keep +0 -0
  83. data/examples/chat-app/test/test_helper.rb +10 -0
  84. data/examples/chat-app/tmp/.keep +0 -0
  85. data/examples/chat-app/vendor/assets/javascripts/.keep +0 -0
  86. data/examples/chat-app/vendor/assets/stylesheets/.keep +0 -0
  87. data/hyper-model.gemspec +43 -0
  88. data/lib/hyper-model.rb +14 -0
  89. data/lib/hyperloop/model/load.rb +7 -0
  90. data/lib/hyperloop/model/version.rb +5 -0
  91. metadata +385 -0
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Ruby Hyperloop
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ # hyper-model
2
+ Isomorphic ActiveRecord wrapper for Hyperloop
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,21 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore Byebug command history file.
21
+ .byebug_history
@@ -0,0 +1,62 @@
1
+ source 'https://rubygems.org'
2
+
3
+ git_source(:github) do |repo_name|
4
+ repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5
+ "https://github.com/#{repo_name}.git"
6
+ end
7
+
8
+
9
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10
+ gem 'rails', '~> 5.0.1'
11
+ # Use sqlite3 as the database for Active Record
12
+ gem 'sqlite3'
13
+ # Use Puma as the app server
14
+ gem 'puma', '~> 3.0'
15
+ # Use SCSS for stylesheets
16
+ gem 'sass-rails', '~> 5.0'
17
+ # Use Uglifier as compressor for JavaScript assets
18
+ gem 'uglifier', '>= 1.3.0'
19
+ # Use CoffeeScript for .coffee assets and views
20
+ gem 'coffee-rails', '~> 4.2'
21
+ # See https://github.com/rails/execjs#readme for more supported runtimes
22
+ # gem 'therubyracer', platforms: :ruby
23
+
24
+ # Use jquery as the JavaScript library
25
+ gem 'jquery-rails'
26
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
27
+ gem 'turbolinks', '~> 5'
28
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
29
+ gem 'jbuilder', '~> 2.5'
30
+ # Use Redis adapter to run Action Cable in production
31
+ # gem 'redis', '~> 3.0'
32
+ # Use ActiveModel has_secure_password
33
+ # gem 'bcrypt', '~> 3.1.7'
34
+
35
+ # Use Capistrano for deployment
36
+ # gem 'capistrano-rails', group: :development
37
+
38
+ group :development, :test do
39
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
40
+ gem 'byebug', platform: :mri
41
+ end
42
+
43
+ group :development do
44
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
45
+ gem 'web-console', '>= 3.3.0'
46
+ gem 'listen', '~> 3.0.5'
47
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
48
+ gem 'spring'
49
+ gem 'spring-watcher-listen', '~> 2.0.0'
50
+ gem 'pry-rescue'
51
+ end
52
+
53
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
54
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
55
+
56
+ gem 'hyper-model', path: '../..'
57
+ gem 'bootstrap-sass', '~> 3.3.6'
58
+ gem 'marked-rails'
59
+ gem 'opal-browser'
60
+ gem 'therubyracer', platforms: :ruby
61
+ gem 'react-rails', '~> 1.9.0'
62
+ gem 'opal-rails', '>= 0.8.1'
@@ -0,0 +1,309 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ hyper-model (0.6.0)
5
+ hyper-mesh
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.0.1)
11
+ actionpack (= 5.0.1)
12
+ nio4r (~> 1.2)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.0.1)
15
+ actionpack (= 5.0.1)
16
+ actionview (= 5.0.1)
17
+ activejob (= 5.0.1)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.0.1)
21
+ actionview (= 5.0.1)
22
+ activesupport (= 5.0.1)
23
+ rack (~> 2.0)
24
+ rack-test (~> 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.0.1)
28
+ activesupport (= 5.0.1)
29
+ builder (~> 3.1)
30
+ erubis (~> 2.7.0)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
33
+ activejob (5.0.1)
34
+ activesupport (= 5.0.1)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.0.1)
37
+ activesupport (= 5.0.1)
38
+ activerecord (5.0.1)
39
+ activemodel (= 5.0.1)
40
+ activesupport (= 5.0.1)
41
+ arel (~> 7.0)
42
+ activesupport (5.0.1)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (~> 0.7)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ addressable (2.5.0)
48
+ public_suffix (~> 2.0, >= 2.0.2)
49
+ arel (7.1.4)
50
+ autoprefixer-rails (6.7.0)
51
+ execjs
52
+ babel-source (5.8.35)
53
+ babel-transpiler (0.7.0)
54
+ babel-source (>= 4.0, < 6)
55
+ execjs (~> 2.0)
56
+ bootstrap-sass (3.3.7)
57
+ autoprefixer-rails (>= 5.2.1)
58
+ sass (>= 3.3.4)
59
+ builder (3.2.3)
60
+ byebug (9.0.6)
61
+ coderay (1.1.1)
62
+ coffee-rails (4.2.1)
63
+ coffee-script (>= 2.2.0)
64
+ railties (>= 4.0.0, < 5.2.x)
65
+ coffee-script (2.4.1)
66
+ coffee-script-source
67
+ execjs
68
+ coffee-script-source (1.12.2)
69
+ concurrent-ruby (1.0.4)
70
+ connection_pool (2.2.1)
71
+ cookiejar (0.3.3)
72
+ daemons (1.2.4)
73
+ debug_inspector (0.0.2)
74
+ em-http-request (1.1.5)
75
+ addressable (>= 2.3.4)
76
+ cookiejar (!= 0.3.1)
77
+ em-socksify (>= 0.3)
78
+ eventmachine (>= 1.0.3)
79
+ http_parser.rb (>= 0.6.0)
80
+ em-socksify (0.3.1)
81
+ eventmachine (>= 1.0.0.beta.4)
82
+ em-websocket (0.5.1)
83
+ eventmachine (>= 0.12.9)
84
+ http_parser.rb (~> 0.6.0)
85
+ erubis (2.7.0)
86
+ eventmachine (1.2.3)
87
+ execjs (2.7.0)
88
+ ffi (1.9.17)
89
+ globalid (0.3.7)
90
+ activesupport (>= 4.1.0)
91
+ hike (1.2.3)
92
+ http_parser.rb (0.6.0)
93
+ httpclient (2.8.3)
94
+ hyper-component (0.12.3)
95
+ hyper-react (>= 0.12.3)
96
+ hyperloop-config (>= 0.9.2)
97
+ opal-rails (~> 0.9.0)
98
+ react-rails (< 1.10.0)
99
+ hyper-mesh (0.6.0)
100
+ activerecord (>= 0.3.0)
101
+ hyper-component (>= 0.12.3)
102
+ hyper-operation (>= 0.5.0)
103
+ hyper-operation (0.5.0)
104
+ activerecord (>= 0.3.0)
105
+ hyper-component (>= 0.12.2)
106
+ hyperloop-config (>= 0.9.2)
107
+ mutations
108
+ opal-activesupport
109
+ pusher
110
+ pusher-fake
111
+ hyper-react (0.12.3)
112
+ hyper-store (>= 0.2.1)
113
+ hyperloop-config (>= 0.9.2)
114
+ opal (>= 0.8.0)
115
+ opal-activesupport (>= 0.2.0)
116
+ hyper-store (0.2.1)
117
+ hyperloop-config (>= 0.9.2)
118
+ hyperloop-config (0.9.2)
119
+ opal
120
+ i18n (0.8.1)
121
+ interception (0.5)
122
+ jbuilder (2.6.3)
123
+ activesupport (>= 3.0.0, < 5.2)
124
+ multi_json (~> 1.2)
125
+ jquery-rails (4.2.2)
126
+ rails-dom-testing (>= 1, < 3)
127
+ railties (>= 4.2.0)
128
+ thor (>= 0.14, < 2.0)
129
+ libv8 (3.16.14.17)
130
+ listen (3.0.8)
131
+ rb-fsevent (~> 0.9, >= 0.9.4)
132
+ rb-inotify (~> 0.9, >= 0.9.7)
133
+ loofah (2.0.3)
134
+ nokogiri (>= 1.5.9)
135
+ mail (2.6.4)
136
+ mime-types (>= 1.16, < 4)
137
+ marked-rails (0.3.2.0)
138
+ method_source (0.8.2)
139
+ mime-types (3.1)
140
+ mime-types-data (~> 3.2015)
141
+ mime-types-data (3.2016.0521)
142
+ mini_portile2 (2.1.0)
143
+ minitest (5.10.1)
144
+ multi_json (1.12.1)
145
+ mutations (0.8.1)
146
+ activesupport
147
+ nio4r (1.2.1)
148
+ nokogiri (1.7.0.1)
149
+ mini_portile2 (~> 2.1.0)
150
+ opal (0.10.3)
151
+ hike (~> 1.2)
152
+ sourcemap (~> 0.1.0)
153
+ sprockets (~> 3.1)
154
+ tilt (>= 1.4)
155
+ opal-activesupport (0.3.0)
156
+ opal (>= 0.5.0, < 1.0.0)
157
+ opal-browser (0.2.0)
158
+ opal
159
+ paggio
160
+ opal-jquery (0.4.2)
161
+ opal (>= 0.7.0, < 0.11.0)
162
+ opal-rails (0.9.1)
163
+ jquery-rails
164
+ opal (>= 0.8.0, < 0.11)
165
+ opal-activesupport (>= 0.0.5)
166
+ opal-jquery (~> 0.4.0)
167
+ opal-sprockets (~> 0.4.0)
168
+ rails (>= 4.0, < 6.0)
169
+ sprockets-rails (< 3.0)
170
+ opal-sprockets (0.4.0.0.10.0.3.0.0)
171
+ opal (~> 0.10.0)
172
+ sprockets (~> 3.0)
173
+ tilt (>= 1.4)
174
+ paggio (0.2.6)
175
+ pry (0.10.4)
176
+ coderay (~> 1.1.0)
177
+ method_source (~> 0.8.1)
178
+ slop (~> 3.4)
179
+ pry-rescue (1.4.5)
180
+ interception (>= 0.5)
181
+ pry
182
+ public_suffix (2.0.5)
183
+ puma (3.7.1)
184
+ pusher (1.3.1)
185
+ httpclient (~> 2.7)
186
+ multi_json (~> 1.0)
187
+ pusher-signature (~> 0.1.8)
188
+ pusher-fake (1.8.0)
189
+ em-http-request (~> 1.1)
190
+ em-websocket (~> 0.5)
191
+ multi_json (~> 1.6)
192
+ thin (~> 1.5)
193
+ pusher-signature (0.1.8)
194
+ rack (2.0.1)
195
+ rack-test (0.6.3)
196
+ rack (>= 1.0)
197
+ rails (5.0.1)
198
+ actioncable (= 5.0.1)
199
+ actionmailer (= 5.0.1)
200
+ actionpack (= 5.0.1)
201
+ actionview (= 5.0.1)
202
+ activejob (= 5.0.1)
203
+ activemodel (= 5.0.1)
204
+ activerecord (= 5.0.1)
205
+ activesupport (= 5.0.1)
206
+ bundler (>= 1.3.0, < 2.0)
207
+ railties (= 5.0.1)
208
+ sprockets-rails (>= 2.0.0)
209
+ rails-dom-testing (2.0.2)
210
+ activesupport (>= 4.2.0, < 6.0)
211
+ nokogiri (~> 1.6)
212
+ rails-html-sanitizer (1.0.3)
213
+ loofah (~> 2.0)
214
+ railties (5.0.1)
215
+ actionpack (= 5.0.1)
216
+ activesupport (= 5.0.1)
217
+ method_source
218
+ rake (>= 0.8.7)
219
+ thor (>= 0.18.1, < 2.0)
220
+ rake (12.0.0)
221
+ rb-fsevent (0.9.8)
222
+ rb-inotify (0.9.8)
223
+ ffi (>= 0.5.0)
224
+ react-rails (1.9.0)
225
+ babel-transpiler (>= 0.7.0)
226
+ coffee-script-source (~> 1.8)
227
+ connection_pool
228
+ execjs
229
+ railties (>= 3.2)
230
+ tilt
231
+ ref (2.0.0)
232
+ sass (3.4.23)
233
+ sass-rails (5.0.6)
234
+ railties (>= 4.0.0, < 6)
235
+ sass (~> 3.1)
236
+ sprockets (>= 2.8, < 4.0)
237
+ sprockets-rails (>= 2.0, < 4.0)
238
+ tilt (>= 1.1, < 3)
239
+ slop (3.6.0)
240
+ sourcemap (0.1.1)
241
+ spring (2.0.1)
242
+ activesupport (>= 4.2)
243
+ spring-watcher-listen (2.0.1)
244
+ listen (>= 2.7, < 4.0)
245
+ spring (>= 1.2, < 3.0)
246
+ sprockets (3.7.1)
247
+ concurrent-ruby (~> 1.0)
248
+ rack (> 1, < 3)
249
+ sprockets-rails (2.3.3)
250
+ actionpack (>= 3.0)
251
+ activesupport (>= 3.0)
252
+ sprockets (>= 2.8, < 4.0)
253
+ sqlite3 (1.3.13)
254
+ therubyracer (0.12.3)
255
+ libv8 (~> 3.16.14.15)
256
+ ref
257
+ thin (1.7.0)
258
+ daemons (~> 1.0, >= 1.0.9)
259
+ eventmachine (~> 1.0, >= 1.0.4)
260
+ rack (>= 1, < 3)
261
+ thor (0.19.4)
262
+ thread_safe (0.3.6)
263
+ tilt (2.0.6)
264
+ turbolinks (5.0.1)
265
+ turbolinks-source (~> 5)
266
+ turbolinks-source (5.0.0)
267
+ tzinfo (1.2.2)
268
+ thread_safe (~> 0.1)
269
+ uglifier (3.0.4)
270
+ execjs (>= 0.3.0, < 3)
271
+ web-console (3.4.0)
272
+ actionview (>= 5.0)
273
+ activemodel (>= 5.0)
274
+ debug_inspector
275
+ railties (>= 5.0)
276
+ websocket-driver (0.6.5)
277
+ websocket-extensions (>= 0.1.0)
278
+ websocket-extensions (0.1.2)
279
+
280
+ PLATFORMS
281
+ ruby
282
+
283
+ DEPENDENCIES
284
+ bootstrap-sass (~> 3.3.6)
285
+ byebug
286
+ coffee-rails (~> 4.2)
287
+ hyper-model!
288
+ jbuilder (~> 2.5)
289
+ jquery-rails
290
+ listen (~> 3.0.5)
291
+ marked-rails
292
+ opal-browser
293
+ opal-rails (>= 0.8.1)
294
+ pry-rescue
295
+ puma (~> 3.0)
296
+ rails (~> 5.0.1)
297
+ react-rails (~> 1.9.0)
298
+ sass-rails (~> 5.0)
299
+ spring
300
+ spring-watcher-listen (~> 2.0.0)
301
+ sqlite3
302
+ therubyracer
303
+ turbolinks (~> 5)
304
+ tzinfo-data
305
+ uglifier (>= 1.3.0)
306
+ web-console (>= 3.3.0)
307
+
308
+ BUNDLED WITH
309
+ 1.12.5
@@ -0,0 +1,3 @@
1
+ # README
2
+
3
+ cd to this directory, bundle install and then visit the home page
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require_relative 'config/application'
5
+
6
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -0,0 +1,3 @@
1
+ //= require jquery
2
+ //= require jquery_ujs
3
+ //= require hyperloop-loader