hyper-model 0.6.0 → 0.99.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (140) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +35 -41
  3. data/.rspec +2 -0
  4. data/.travis.yml +33 -0
  5. data/CHANGELOG.md +34 -0
  6. data/DOCS.md +735 -0
  7. data/Gemfile +7 -0
  8. data/Gemfile.lock +298 -224
  9. data/{LICENSE → LICENSE.txt} +6 -6
  10. data/README.md +51 -2
  11. data/Rakefile +18 -0
  12. data/bin/console +14 -0
  13. data/bin/setup +7 -0
  14. data/codeship.database.yml +18 -0
  15. data/hyper-model.gemspec +62 -36
  16. data/lib/active_model_client_stubs.rb +16 -0
  17. data/lib/active_record_base.rb +331 -0
  18. data/{examples/chat-app/app/assets/images/.keep → lib/acts_as_string.rb} +0 -0
  19. data/lib/enumerable/pluck.rb +6 -0
  20. data/lib/hyper-model.rb +59 -8
  21. data/lib/hyper_model/version.rb +3 -0
  22. data/lib/hyper_react/input_tags.rb +47 -0
  23. data/lib/hyperloop/model/load.rb +1 -1
  24. data/lib/kernel/itself.rb +5 -0
  25. data/lib/object/tap.rb +7 -0
  26. data/lib/opal/equality_patches.rb +15 -0
  27. data/lib/opal/parse_patch.rb +14 -0
  28. data/lib/opal/set_patches.rb +8 -0
  29. data/lib/reactive_record/active_record/aggregations.rb +69 -0
  30. data/lib/reactive_record/active_record/associations.rb +118 -0
  31. data/lib/reactive_record/active_record/base.rb +10 -0
  32. data/lib/reactive_record/active_record/class_methods.rb +406 -0
  33. data/lib/reactive_record/active_record/error.rb +31 -0
  34. data/lib/reactive_record/active_record/errors.rb +374 -0
  35. data/lib/reactive_record/active_record/instance_methods.rb +187 -0
  36. data/lib/reactive_record/active_record/public_columns_hash.rb +44 -0
  37. data/lib/reactive_record/active_record/reactive_record/backing_record_inspector.rb +36 -0
  38. data/lib/reactive_record/active_record/reactive_record/base.rb +416 -0
  39. data/lib/reactive_record/active_record/reactive_record/collection.rb +558 -0
  40. data/lib/reactive_record/active_record/reactive_record/column_types.rb +75 -0
  41. data/lib/reactive_record/active_record/reactive_record/dummy_value.rb +236 -0
  42. data/lib/reactive_record/active_record/reactive_record/getters.rb +133 -0
  43. data/lib/reactive_record/active_record/reactive_record/isomorphic_base.rb +576 -0
  44. data/lib/reactive_record/active_record/reactive_record/lookup_tables.rb +54 -0
  45. data/lib/reactive_record/active_record/reactive_record/operations.rb +107 -0
  46. data/lib/reactive_record/active_record/reactive_record/scoped_collection.rb +62 -0
  47. data/lib/reactive_record/active_record/reactive_record/setters.rb +194 -0
  48. data/lib/reactive_record/active_record/reactive_record/unscoped_collection.rb +16 -0
  49. data/lib/reactive_record/active_record/reactive_record/while_loading.rb +343 -0
  50. data/lib/reactive_record/active_record_error.rb +4 -0
  51. data/lib/reactive_record/broadcast.rb +223 -0
  52. data/lib/reactive_record/engine.rb +11 -0
  53. data/lib/reactive_record/interval.rb +190 -0
  54. data/lib/reactive_record/permissions.rb +117 -0
  55. data/lib/reactive_record/pry.rb +13 -0
  56. data/lib/reactive_record/reactive_scope.rb +18 -0
  57. data/lib/reactive_record/scope_description.rb +121 -0
  58. data/lib/reactive_record/serializers.rb +7 -0
  59. data/lib/reactive_record/server_data_cache.rb +478 -0
  60. data/path_release_steps.md +9 -0
  61. metadata +399 -109
  62. data/CODE_OF_CONDUCT.md +0 -49
  63. data/examples/chat-app/.gitignore +0 -21
  64. data/examples/chat-app/Gemfile +0 -62
  65. data/examples/chat-app/Gemfile.lock +0 -309
  66. data/examples/chat-app/README.md +0 -3
  67. data/examples/chat-app/Rakefile +0 -6
  68. data/examples/chat-app/app/assets/config/manifest.js +0 -3
  69. data/examples/chat-app/app/assets/javascripts/application.js +0 -3
  70. data/examples/chat-app/app/assets/stylesheets/application.scss +0 -33
  71. data/examples/chat-app/app/controllers/application_controller.rb +0 -3
  72. data/examples/chat-app/app/controllers/home_controller.rb +0 -5
  73. data/examples/chat-app/app/hyperloop/components/app.rb +0 -12
  74. data/examples/chat-app/app/hyperloop/components/formatted_div.rb +0 -15
  75. data/examples/chat-app/app/hyperloop/components/input_box.rb +0 -26
  76. data/examples/chat-app/app/hyperloop/components/message.rb +0 -29
  77. data/examples/chat-app/app/hyperloop/components/messages.rb +0 -8
  78. data/examples/chat-app/app/hyperloop/components/nav.rb +0 -30
  79. data/examples/chat-app/app/hyperloop/models/application_record.rb +0 -3
  80. data/examples/chat-app/app/hyperloop/models/message.rb +0 -6
  81. data/examples/chat-app/app/hyperloop/operations/operations.rb +0 -13
  82. data/examples/chat-app/app/hyperloop/stores/message_store.rb +0 -17
  83. data/examples/chat-app/app/policies/application_policy.rb +0 -9
  84. data/examples/chat-app/app/views/layouts/application.html.erb +0 -12
  85. data/examples/chat-app/bin/bundle +0 -3
  86. data/examples/chat-app/bin/rails +0 -9
  87. data/examples/chat-app/bin/rake +0 -9
  88. data/examples/chat-app/bin/setup +0 -34
  89. data/examples/chat-app/bin/spring +0 -17
  90. data/examples/chat-app/bin/update +0 -29
  91. data/examples/chat-app/config.ru +0 -5
  92. data/examples/chat-app/config/application.rb +0 -12
  93. data/examples/chat-app/config/boot.rb +0 -3
  94. data/examples/chat-app/config/cable.yml +0 -9
  95. data/examples/chat-app/config/database.yml +0 -25
  96. data/examples/chat-app/config/environment.rb +0 -5
  97. data/examples/chat-app/config/environments/development.rb +0 -56
  98. data/examples/chat-app/config/environments/production.rb +0 -86
  99. data/examples/chat-app/config/environments/test.rb +0 -42
  100. data/examples/chat-app/config/initializers/application_controller_renderer.rb +0 -6
  101. data/examples/chat-app/config/initializers/assets.rb +0 -11
  102. data/examples/chat-app/config/initializers/backtrace_silencers.rb +0 -7
  103. data/examples/chat-app/config/initializers/cookies_serializer.rb +0 -5
  104. data/examples/chat-app/config/initializers/filter_parameter_logging.rb +0 -4
  105. data/examples/chat-app/config/initializers/hyperloop.rb +0 -6
  106. data/examples/chat-app/config/initializers/inflections.rb +0 -16
  107. data/examples/chat-app/config/initializers/mime_types.rb +0 -4
  108. data/examples/chat-app/config/initializers/new_framework_defaults.rb +0 -24
  109. data/examples/chat-app/config/initializers/session_store.rb +0 -3
  110. data/examples/chat-app/config/initializers/wrap_parameters.rb +0 -14
  111. data/examples/chat-app/config/locales/en.yml +0 -23
  112. data/examples/chat-app/config/puma.rb +0 -47
  113. data/examples/chat-app/config/routes.rb +0 -5
  114. data/examples/chat-app/config/secrets.yml +0 -22
  115. data/examples/chat-app/config/spring.rb +0 -6
  116. data/examples/chat-app/db/migrate/20170319194429_create_message.rb +0 -9
  117. data/examples/chat-app/db/schema.rb +0 -48
  118. data/examples/chat-app/db/seeds.rb +0 -7
  119. data/examples/chat-app/lib/assets/.keep +0 -0
  120. data/examples/chat-app/lib/tasks/.keep +0 -0
  121. data/examples/chat-app/log/.keep +0 -0
  122. data/examples/chat-app/public/404.html +0 -67
  123. data/examples/chat-app/public/422.html +0 -67
  124. data/examples/chat-app/public/500.html +0 -66
  125. data/examples/chat-app/public/apple-touch-icon-precomposed.png +0 -0
  126. data/examples/chat-app/public/apple-touch-icon.png +0 -0
  127. data/examples/chat-app/public/favicon.ico +0 -0
  128. data/examples/chat-app/public/robots.txt +0 -5
  129. data/examples/chat-app/test/controllers/.keep +0 -0
  130. data/examples/chat-app/test/fixtures/.keep +0 -0
  131. data/examples/chat-app/test/fixtures/files/.keep +0 -0
  132. data/examples/chat-app/test/helpers/.keep +0 -0
  133. data/examples/chat-app/test/integration/.keep +0 -0
  134. data/examples/chat-app/test/mailers/.keep +0 -0
  135. data/examples/chat-app/test/models/.keep +0 -0
  136. data/examples/chat-app/test/test_helper.rb +0 -10
  137. data/examples/chat-app/tmp/.keep +0 -0
  138. data/examples/chat-app/vendor/assets/javascripts/.keep +0 -0
  139. data/examples/chat-app/vendor/assets/stylesheets/.keep +0 -0
  140. data/lib/hyperloop/model/version.rb +0 -5
@@ -1,49 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, and in the interest of
4
- fostering an open and welcoming community, we pledge to respect all people who
5
- contribute through reporting issues, posting feature requests, updating
6
- documentation, submitting pull requests or patches, and other activities.
7
-
8
- We are committed to making participation in this project a harassment-free
9
- experience for everyone, regardless of level of experience, gender, gender
10
- identity and expression, sexual orientation, disability, personal appearance,
11
- body size, race, ethnicity, age, religion, or nationality.
12
-
13
- Examples of unacceptable behavior by participants include:
14
-
15
- * The use of sexualized language or imagery
16
- * Personal attacks
17
- * Trolling or insulting/derogatory comments
18
- * Public or private harassment
19
- * Publishing other's private information, such as physical or electronic
20
- addresses, without explicit permission
21
- * Other unethical or unprofessional conduct
22
-
23
- Project maintainers have the right and responsibility to remove, edit, or
24
- reject comments, commits, code, wiki edits, issues, and other contributions
25
- that are not aligned to this Code of Conduct, or to ban temporarily or
26
- permanently any contributor for other behaviors that they deem inappropriate,
27
- threatening, offensive, or harmful.
28
-
29
- By adopting this Code of Conduct, project maintainers commit themselves to
30
- fairly and consistently applying these principles to every aspect of managing
31
- this project. Project maintainers who do not follow or enforce the Code of
32
- Conduct may be permanently removed from the project team.
33
-
34
- This code of conduct applies both within project spaces and in public spaces
35
- when an individual is representing the project or its community.
36
-
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer at mitch@catprint.com. All
39
- complaints will be reviewed and investigated and will result in a response that
40
- is deemed necessary and appropriate to the circumstances. Maintainers are
41
- obligated to maintain confidentiality with regard to the reporter of an
42
- incident.
43
-
44
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
- version 1.3.0, available at
46
- [http://contributor-covenant.org/version/1/3/0/][version]
47
-
48
- [homepage]: http://contributor-covenant.org
49
- [version]: http://contributor-covenant.org/version/1/3/0/
@@ -1,21 +0,0 @@
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
@@ -1,62 +0,0 @@
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'
@@ -1,309 +0,0 @@
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
@@ -1,3 +0,0 @@
1
- # README
2
-
3
- cd to this directory, bundle install and then visit the home page
@@ -1,6 +0,0 @@
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