hyper-operation 0.5.12 → 0.99.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 (277) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +4 -1
  3. data/.travis.yml +33 -0
  4. data/DOCS-POLICIES.md +93 -0
  5. data/DOCS.md +1 -1
  6. data/Gemfile +5 -1
  7. data/Gemfile.lock +379 -0
  8. data/README.md +10 -9
  9. data/Rakefile +10 -2
  10. data/hyper-operation.gemspec +34 -29
  11. data/lib/hyper-operation.rb +5 -4
  12. data/lib/hyper-operation/boot.rb +1 -1
  13. data/lib/hyper-operation/engine.rb +1 -1
  14. data/lib/hyper-operation/http.rb +309 -0
  15. data/lib/hyper-operation/railway/params_wrapper.rb +1 -0
  16. data/lib/hyper-operation/server_op.rb +83 -18
  17. data/lib/hyper-operation/transport/client_drivers.rb +71 -28
  18. data/lib/hyper-operation/transport/connection.rb +22 -20
  19. data/lib/hyper-operation/transport/hyperloop.rb +1 -1
  20. data/lib/hyper-operation/transport/hyperloop_controller.rb +6 -1
  21. data/lib/hyper-operation/transport/policy.rb +78 -13
  22. data/lib/hyper-operation/version.rb +1 -1
  23. metadata +95 -319
  24. data/CODE_OF_CONDUCT.md +0 -49
  25. data/examples/chat-app/.gitignore +0 -21
  26. data/examples/chat-app/Gemfile +0 -57
  27. data/examples/chat-app/Gemfile.lock +0 -283
  28. data/examples/chat-app/README.md +0 -3
  29. data/examples/chat-app/Rakefile +0 -6
  30. data/examples/chat-app/app/assets/config/manifest.js +0 -3
  31. data/examples/chat-app/app/assets/images/.keep +0 -0
  32. data/examples/chat-app/app/assets/javascripts/application.js +0 -3
  33. data/examples/chat-app/app/assets/javascripts/cable.js +0 -13
  34. data/examples/chat-app/app/assets/javascripts/channels/.keep +0 -0
  35. data/examples/chat-app/app/assets/stylesheets/application.css +0 -15
  36. data/examples/chat-app/app/channels/application_cable/channel.rb +0 -4
  37. data/examples/chat-app/app/channels/application_cable/connection.rb +0 -4
  38. data/examples/chat-app/app/controllers/application_controller.rb +0 -3
  39. data/examples/chat-app/app/controllers/concerns/.keep +0 -0
  40. data/examples/chat-app/app/controllers/home_controller.rb +0 -5
  41. data/examples/chat-app/app/helpers/application_helper.rb +0 -2
  42. data/examples/chat-app/app/hyperloop/components/app.rb +0 -11
  43. data/examples/chat-app/app/hyperloop/components/formatted_div.rb +0 -13
  44. data/examples/chat-app/app/hyperloop/components/input_box.rb +0 -29
  45. data/examples/chat-app/app/hyperloop/components/message.rb +0 -29
  46. data/examples/chat-app/app/hyperloop/components/messages.rb +0 -9
  47. data/examples/chat-app/app/hyperloop/components/nav.rb +0 -30
  48. data/examples/chat-app/app/hyperloop/operations/operations.rb +0 -56
  49. data/examples/chat-app/app/hyperloop/stores/message_store.rb +0 -23
  50. data/examples/chat-app/app/models/application_record.rb +0 -3
  51. data/examples/chat-app/app/models/concerns/.keep +0 -0
  52. data/examples/chat-app/app/models/models.rb +0 -2
  53. data/examples/chat-app/app/models/public/.keep +0 -0
  54. data/examples/chat-app/app/models/public/announcement.rb +0 -8
  55. data/examples/chat-app/app/policies/application_policy.rb +0 -5
  56. data/examples/chat-app/app/views/layouts/application.html.erb +0 -51
  57. data/examples/chat-app/bin/bundle +0 -3
  58. data/examples/chat-app/bin/rails +0 -9
  59. data/examples/chat-app/bin/rake +0 -9
  60. data/examples/chat-app/bin/setup +0 -34
  61. data/examples/chat-app/bin/spring +0 -17
  62. data/examples/chat-app/bin/update +0 -29
  63. data/examples/chat-app/config.ru +0 -5
  64. data/examples/chat-app/config/application.rb +0 -13
  65. data/examples/chat-app/config/boot.rb +0 -3
  66. data/examples/chat-app/config/cable.yml +0 -9
  67. data/examples/chat-app/config/database.yml +0 -25
  68. data/examples/chat-app/config/environment.rb +0 -5
  69. data/examples/chat-app/config/environments/development.rb +0 -56
  70. data/examples/chat-app/config/environments/production.rb +0 -86
  71. data/examples/chat-app/config/environments/test.rb +0 -42
  72. data/examples/chat-app/config/initializers/application_controller_renderer.rb +0 -6
  73. data/examples/chat-app/config/initializers/assets.rb +0 -11
  74. data/examples/chat-app/config/initializers/backtrace_silencers.rb +0 -7
  75. data/examples/chat-app/config/initializers/cookies_serializer.rb +0 -5
  76. data/examples/chat-app/config/initializers/filter_parameter_logging.rb +0 -4
  77. data/examples/chat-app/config/initializers/hyperloop.rb +0 -4
  78. data/examples/chat-app/config/initializers/inflections.rb +0 -16
  79. data/examples/chat-app/config/initializers/mime_types.rb +0 -4
  80. data/examples/chat-app/config/initializers/new_framework_defaults.rb +0 -24
  81. data/examples/chat-app/config/initializers/session_store.rb +0 -3
  82. data/examples/chat-app/config/initializers/wrap_parameters.rb +0 -14
  83. data/examples/chat-app/config/locales/en.yml +0 -23
  84. data/examples/chat-app/config/puma.rb +0 -47
  85. data/examples/chat-app/config/routes.rb +0 -5
  86. data/examples/chat-app/config/secrets.yml +0 -22
  87. data/examples/chat-app/config/spring.rb +0 -6
  88. data/examples/chat-app/db/seeds.rb +0 -7
  89. data/examples/chat-app/lib/assets/.keep +0 -0
  90. data/examples/chat-app/lib/tasks/.keep +0 -0
  91. data/examples/chat-app/log/.keep +0 -0
  92. data/examples/chat-app/public/404.html +0 -67
  93. data/examples/chat-app/public/422.html +0 -67
  94. data/examples/chat-app/public/500.html +0 -66
  95. data/examples/chat-app/public/apple-touch-icon-precomposed.png +0 -0
  96. data/examples/chat-app/public/apple-touch-icon.png +0 -0
  97. data/examples/chat-app/public/favicon.ico +0 -0
  98. data/examples/chat-app/public/robots.txt +0 -5
  99. data/examples/chat-app/test/controllers/.keep +0 -0
  100. data/examples/chat-app/test/fixtures/.keep +0 -0
  101. data/examples/chat-app/test/fixtures/files/.keep +0 -0
  102. data/examples/chat-app/test/helpers/.keep +0 -0
  103. data/examples/chat-app/test/integration/.keep +0 -0
  104. data/examples/chat-app/test/mailers/.keep +0 -0
  105. data/examples/chat-app/test/models/.keep +0 -0
  106. data/examples/chat-app/test/test_helper.rb +0 -10
  107. data/examples/chat-app/tmp/.keep +0 -0
  108. data/examples/chat-app/vendor/assets/javascripts/.keep +0 -0
  109. data/examples/chat-app/vendor/assets/stylesheets/.keep +0 -0
  110. data/examples/five-letter-word-game/.gitignore +0 -21
  111. data/examples/five-letter-word-game/Gemfile +0 -62
  112. data/examples/five-letter-word-game/Gemfile.lock +0 -291
  113. data/examples/five-letter-word-game/README.md +0 -24
  114. data/examples/five-letter-word-game/Rakefile +0 -6
  115. data/examples/five-letter-word-game/app/assets/config/manifest.js +0 -3
  116. data/examples/five-letter-word-game/app/assets/images/.keep +0 -0
  117. data/examples/five-letter-word-game/app/assets/javascripts/application.js +0 -4
  118. data/examples/five-letter-word-game/app/assets/javascripts/cable.js +0 -13
  119. data/examples/five-letter-word-game/app/assets/javascripts/channels/.keep +0 -0
  120. data/examples/five-letter-word-game/app/assets/stylesheets/application.css +0 -15
  121. data/examples/five-letter-word-game/app/channels/application_cable/channel.rb +0 -4
  122. data/examples/five-letter-word-game/app/channels/application_cable/connection.rb +0 -4
  123. data/examples/five-letter-word-game/app/controllers/application_controller.rb +0 -14
  124. data/examples/five-letter-word-game/app/controllers/concerns/.keep +0 -0
  125. data/examples/five-letter-word-game/app/controllers/home_controller.rb +0 -5
  126. data/examples/five-letter-word-game/app/helpers/application_helper.rb +0 -2
  127. data/examples/five-letter-word-game/app/hyperloop/components/app.rb +0 -65
  128. data/examples/five-letter-word-game/app/hyperloop/components/guesses.rb +0 -8
  129. data/examples/five-letter-word-game/app/hyperloop/components/input_word.rb +0 -13
  130. data/examples/five-letter-word-game/app/hyperloop/models/user.rb +0 -27
  131. data/examples/five-letter-word-game/app/hyperloop/operations/ops.rb +0 -115
  132. data/examples/five-letter-word-game/app/hyperloop/stores/store.rb +0 -120
  133. data/examples/five-letter-word-game/app/jobs/application_job.rb +0 -2
  134. data/examples/five-letter-word-game/app/mailers/application_mailer.rb +0 -4
  135. data/examples/five-letter-word-game/app/models/application_record.rb +0 -3
  136. data/examples/five-letter-word-game/app/models/concerns/.keep +0 -0
  137. data/examples/five-letter-word-game/app/policies/hyperloop/application_policy.rb +0 -3
  138. data/examples/five-letter-word-game/app/policies/user_policy.rb +0 -4
  139. data/examples/five-letter-word-game/app/views/layouts/application.html.erb +0 -14
  140. data/examples/five-letter-word-game/app/views/layouts/mailer.html.erb +0 -13
  141. data/examples/five-letter-word-game/app/views/layouts/mailer.text.erb +0 -1
  142. data/examples/five-letter-word-game/bin/bundle +0 -3
  143. data/examples/five-letter-word-game/bin/rails +0 -9
  144. data/examples/five-letter-word-game/bin/rake +0 -9
  145. data/examples/five-letter-word-game/bin/setup +0 -34
  146. data/examples/five-letter-word-game/bin/spring +0 -17
  147. data/examples/five-letter-word-game/bin/update +0 -29
  148. data/examples/five-letter-word-game/config.ru +0 -5
  149. data/examples/five-letter-word-game/config/application.rb +0 -12
  150. data/examples/five-letter-word-game/config/boot.rb +0 -3
  151. data/examples/five-letter-word-game/config/cable.yml +0 -9
  152. data/examples/five-letter-word-game/config/database.yml +0 -46
  153. data/examples/five-letter-word-game/config/environment.rb +0 -5
  154. data/examples/five-letter-word-game/config/environments/development.rb +0 -56
  155. data/examples/five-letter-word-game/config/environments/production.rb +0 -86
  156. data/examples/five-letter-word-game/config/environments/test.rb +0 -42
  157. data/examples/five-letter-word-game/config/initializers/application_controller_renderer.rb +0 -6
  158. data/examples/five-letter-word-game/config/initializers/assets.rb +0 -15
  159. data/examples/five-letter-word-game/config/initializers/backtrace_silencers.rb +0 -7
  160. data/examples/five-letter-word-game/config/initializers/cookies_serializer.rb +0 -5
  161. data/examples/five-letter-word-game/config/initializers/filter_parameter_logging.rb +0 -4
  162. data/examples/five-letter-word-game/config/initializers/hyperloop.rb +0 -19
  163. data/examples/five-letter-word-game/config/initializers/inflections.rb +0 -16
  164. data/examples/five-letter-word-game/config/initializers/mime_types.rb +0 -4
  165. data/examples/five-letter-word-game/config/initializers/new_framework_defaults.rb +0 -24
  166. data/examples/five-letter-word-game/config/initializers/session_store.rb +0 -3
  167. data/examples/five-letter-word-game/config/initializers/wrap_parameters.rb +0 -14
  168. data/examples/five-letter-word-game/config/locales/en.yml +0 -23
  169. data/examples/five-letter-word-game/config/puma.rb +0 -47
  170. data/examples/five-letter-word-game/config/routes.rb +0 -5
  171. data/examples/five-letter-word-game/config/secrets.yml +0 -22
  172. data/examples/five-letter-word-game/config/spring.rb +0 -6
  173. data/examples/five-letter-word-game/db/schema.rb +0 -28
  174. data/examples/five-letter-word-game/db/seeds.rb +0 -7
  175. data/examples/five-letter-word-game/lib/assets/.keep +0 -0
  176. data/examples/five-letter-word-game/lib/tasks/.keep +0 -0
  177. data/examples/five-letter-word-game/log/.keep +0 -0
  178. data/examples/five-letter-word-game/public/404.html +0 -67
  179. data/examples/five-letter-word-game/public/422.html +0 -67
  180. data/examples/five-letter-word-game/public/500.html +0 -66
  181. data/examples/five-letter-word-game/public/apple-touch-icon-precomposed.png +0 -0
  182. data/examples/five-letter-word-game/public/apple-touch-icon.png +0 -0
  183. data/examples/five-letter-word-game/public/favicon.ico +0 -0
  184. data/examples/five-letter-word-game/public/robots.txt +0 -5
  185. data/examples/five-letter-word-game/test/controllers/.keep +0 -0
  186. data/examples/five-letter-word-game/test/fixtures/.keep +0 -0
  187. data/examples/five-letter-word-game/test/fixtures/files/.keep +0 -0
  188. data/examples/five-letter-word-game/test/helpers/.keep +0 -0
  189. data/examples/five-letter-word-game/test/integration/.keep +0 -0
  190. data/examples/five-letter-word-game/test/mailers/.keep +0 -0
  191. data/examples/five-letter-word-game/test/models/.keep +0 -0
  192. data/examples/five-letter-word-game/test/test_helper.rb +0 -10
  193. data/examples/five-letter-word-game/tmp/.keep +0 -0
  194. data/examples/five-letter-word-game/vendor/assets/javascripts/.keep +0 -0
  195. data/examples/five-letter-word-game/vendor/assets/stylesheets/.keep +0 -0
  196. data/examples/smoke_test/.gitignore +0 -21
  197. data/examples/smoke_test/Gemfile +0 -59
  198. data/examples/smoke_test/Gemfile.lock +0 -289
  199. data/examples/smoke_test/README.md +0 -24
  200. data/examples/smoke_test/Rakefile +0 -6
  201. data/examples/smoke_test/app/assets/config/manifest.js +0 -3
  202. data/examples/smoke_test/app/assets/images/.keep +0 -0
  203. data/examples/smoke_test/app/assets/javascripts/application.js +0 -15
  204. data/examples/smoke_test/app/assets/javascripts/cable.js +0 -13
  205. data/examples/smoke_test/app/assets/javascripts/channels/.keep +0 -0
  206. data/examples/smoke_test/app/assets/stylesheets/application.css +0 -15
  207. data/examples/smoke_test/app/channels/application_cable/channel.rb +0 -4
  208. data/examples/smoke_test/app/channels/application_cable/connection.rb +0 -4
  209. data/examples/smoke_test/app/controllers/app_controller.rb +0 -5
  210. data/examples/smoke_test/app/controllers/application_controller.rb +0 -3
  211. data/examples/smoke_test/app/helpers/application_helper.rb +0 -2
  212. data/examples/smoke_test/app/hyperloop/components/hello.rb +0 -25
  213. data/examples/smoke_test/app/hyperloop/operations/operations/nested_send_to_all.rb +0 -7
  214. data/examples/smoke_test/app/hyperloop/operations/send_to_all.rb +0 -6
  215. data/examples/smoke_test/app/hyperloop/stores/messages.rb +0 -4
  216. data/examples/smoke_test/app/jobs/application_job.rb +0 -2
  217. data/examples/smoke_test/app/mailers/application_mailer.rb +0 -4
  218. data/examples/smoke_test/app/models/application_record.rb +0 -3
  219. data/examples/smoke_test/app/models/concerns/.keep +0 -0
  220. data/examples/smoke_test/app/policies/application_policy.rb +0 -8
  221. data/examples/smoke_test/app/views/layouts/application.html.erb +0 -14
  222. data/examples/smoke_test/app/views/layouts/mailer.html.erb +0 -13
  223. data/examples/smoke_test/app/views/layouts/mailer.text.erb +0 -1
  224. data/examples/smoke_test/bin/bundle +0 -3
  225. data/examples/smoke_test/bin/rails +0 -9
  226. data/examples/smoke_test/bin/rake +0 -9
  227. data/examples/smoke_test/bin/setup +0 -34
  228. data/examples/smoke_test/bin/spring +0 -17
  229. data/examples/smoke_test/bin/update +0 -29
  230. data/examples/smoke_test/config.ru +0 -5
  231. data/examples/smoke_test/config/application.rb +0 -15
  232. data/examples/smoke_test/config/boot.rb +0 -3
  233. data/examples/smoke_test/config/cable.yml +0 -9
  234. data/examples/smoke_test/config/database.yml +0 -25
  235. data/examples/smoke_test/config/environment.rb +0 -5
  236. data/examples/smoke_test/config/environments/development.rb +0 -54
  237. data/examples/smoke_test/config/environments/production.rb +0 -86
  238. data/examples/smoke_test/config/environments/test.rb +0 -42
  239. data/examples/smoke_test/config/initializers/application_controller_renderer.rb +0 -6
  240. data/examples/smoke_test/config/initializers/assets.rb +0 -11
  241. data/examples/smoke_test/config/initializers/backtrace_silencers.rb +0 -7
  242. data/examples/smoke_test/config/initializers/cookies_serializer.rb +0 -5
  243. data/examples/smoke_test/config/initializers/filter_parameter_logging.rb +0 -4
  244. data/examples/smoke_test/config/initializers/hyperloop.rb +0 -32
  245. data/examples/smoke_test/config/initializers/inflections.rb +0 -16
  246. data/examples/smoke_test/config/initializers/mime_types.rb +0 -4
  247. data/examples/smoke_test/config/initializers/new_framework_defaults.rb +0 -24
  248. data/examples/smoke_test/config/initializers/session_store.rb +0 -3
  249. data/examples/smoke_test/config/initializers/wrap_parameters.rb +0 -14
  250. data/examples/smoke_test/config/locales/en.yml +0 -23
  251. data/examples/smoke_test/config/puma.rb +0 -47
  252. data/examples/smoke_test/config/routes.rb +0 -5
  253. data/examples/smoke_test/config/secrets.yml +0 -22
  254. data/examples/smoke_test/config/spring.rb +0 -6
  255. data/examples/smoke_test/db/seeds.rb +0 -7
  256. data/examples/smoke_test/lib/assets/.keep +0 -0
  257. data/examples/smoke_test/lib/tasks/.keep +0 -0
  258. data/examples/smoke_test/log/.keep +0 -0
  259. data/examples/smoke_test/public/404.html +0 -67
  260. data/examples/smoke_test/public/422.html +0 -67
  261. data/examples/smoke_test/public/500.html +0 -66
  262. data/examples/smoke_test/public/apple-touch-icon-precomposed.png +0 -0
  263. data/examples/smoke_test/public/apple-touch-icon.png +0 -0
  264. data/examples/smoke_test/public/favicon.ico +0 -0
  265. data/examples/smoke_test/public/robots.txt +0 -5
  266. data/examples/smoke_test/test/controllers/.keep +0 -0
  267. data/examples/smoke_test/test/fixtures/.keep +0 -0
  268. data/examples/smoke_test/test/fixtures/files/.keep +0 -0
  269. data/examples/smoke_test/test/helpers/.keep +0 -0
  270. data/examples/smoke_test/test/integration/.keep +0 -0
  271. data/examples/smoke_test/test/mailers/.keep +0 -0
  272. data/examples/smoke_test/test/models/.keep +0 -0
  273. data/examples/smoke_test/test/test_helper.rb +0 -10
  274. data/examples/smoke_test/tmp/.keep +0 -0
  275. data/examples/smoke_test/vendor/assets/javascripts/.keep +0 -0
  276. data/examples/smoke_test/vendor/assets/stylesheets/.keep +0 -0
  277. data/lib/hyper-operation/call_by_class_name.rb +0 -60
@@ -1,5 +0,0 @@
1
- Rails.application.routes.draw do
2
- mount Hyperloop::Engine => '/hyperloop'
3
- root 'home#app'
4
- # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
5
- end
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rails secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: b8c4cf127f7f4d78d0fe82006a0a1b74a0c6e0852c4db8a9251f8d1349e66ff85fdf72ba0e73ac99e18f3e6fb94dd7e3b4023f25cf7d2a546f34ef57ff5469c5
15
-
16
- test:
17
- secret_key_base: 7e3f762f08214e4c29e79f405aca0abc674c31881b21feea6baeb05c77d2012f403f14e21f9b3f5f9107a14351e23cf2adc34469b01847f0c59a0628fd23714d
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -1,6 +0,0 @@
1
- %w(
2
- .ruby-version
3
- .rbenv-vars
4
- tmp/restart.txt
5
- tmp/caching-dev.txt
6
- ).each { |path| Spring.watch(path) }
@@ -1,7 +0,0 @@
1
- # This file should contain all the record creation needed to seed the database with its default values.
2
- # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
- #
4
- # Examples:
5
- #
6
- # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
- # Character.create(name: 'Luke', movie: movies.first)
File without changes
File without changes
File without changes
@@ -1,67 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The page you were looking for doesn't exist (404)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/404.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>The page you were looking for doesn't exist.</h1>
62
- <p>You may have mistyped the address or the page may have moved.</p>
63
- </div>
64
- <p>If you are the application owner check the logs for more information.</p>
65
- </div>
66
- </body>
67
- </html>
@@ -1,67 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The change you wanted was rejected (422)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/422.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>The change you wanted was rejected.</h1>
62
- <p>Maybe you tried to change something you didn't have access to.</p>
63
- </div>
64
- <p>If you are the application owner check the logs for more information.</p>
65
- </div>
66
- </body>
67
- </html>
@@ -1,66 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/500.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>We're sorry, but something went wrong.</h1>
62
- </div>
63
- <p>If you are the application owner check the logs for more information.</p>
64
- </div>
65
- </body>
66
- </html>
File without changes
@@ -1,5 +0,0 @@
1
- # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
- #
3
- # To ban all spiders from the entire site uncomment the next two lines:
4
- # User-agent: *
5
- # Disallow: /
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,10 +0,0 @@
1
- ENV['RAILS_ENV'] ||= 'test'
2
- require File.expand_path('../../config/environment', __FILE__)
3
- require 'rails/test_help'
4
-
5
- class ActiveSupport::TestCase
6
- # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
7
- fixtures :all
8
-
9
- # Add more helper methods to be used by all tests here...
10
- end
File without changes
@@ -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
- gem 'rails', '=5.1.0.rc1'
12
- # Use sqlite3 as the database for Active Record
13
- #gem 'sqlite3'
14
- gem 'mysql2'
15
- # Use Puma as the app server
16
- gem 'puma', '~> 3.0'
17
- # Use SCSS for stylesheets
18
- gem 'sass-rails', '~> 5.0'
19
- # Use Uglifier as compressor for JavaScript assets
20
- gem 'uglifier', '>= 1.3.0'
21
- # Use CoffeeScript for .coffee assets and views
22
- gem 'coffee-rails', '~> 4.2'
23
- # See https://github.com/rails/execjs#readme for more supported runtimes
24
- # gem 'therubyracer', platforms: :ruby
25
-
26
- # Use jquery as the JavaScript library
27
- gem 'jquery-rails'
28
- # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
29
- gem 'turbolinks', '~> 5'
30
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
31
- gem 'jbuilder', '~> 2.5'
32
- # Use Redis adapter to run Action Cable in production
33
- # gem 'redis', '~> 3.0'
34
- # Use ActiveModel has_secure_password
35
- # gem 'bcrypt', '~> 3.1.7'
36
-
37
- # Use Capistrano for deployment
38
- # gem 'capistrano-rails', group: :development
39
-
40
- gem 'hyper-operation', path: '../..' # normally just get this from ruby gems
41
-
42
- group :development, :test do
43
- # Call 'byebug' anywhere in the code to stop execution and get a debugger console
44
- gem 'byebug', platform: :mri
45
- gem 'hyper-console'
46
- end
47
-
48
- group :development do
49
- # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
50
- gem 'web-console', '>= 3.3.0'
51
- gem 'listen', '~> 3.0.5'
52
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
53
- gem 'spring'
54
- gem 'spring-watcher-listen', '~> 2.0.0'
55
- gem 'opal_hot_reloader'
56
- end
57
-
58
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
59
- gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
60
-
61
- gem 'opal-browser'
62
- gem 'therubyracer', platforms: :ruby
@@ -1,291 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- hyper-operation (0.5.5)
5
- activerecord (>= 0.3.0)
6
- hyper-component (>= 0.12.2)
7
- hyperloop-config (>= 0.9.7)
8
- mutations
9
- opal-activesupport
10
- pusher
11
- pusher-fake
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- actioncable (5.1.0.rc1)
17
- actionpack (= 5.1.0.rc1)
18
- nio4r (~> 2.0)
19
- websocket-driver (~> 0.6.1)
20
- actionmailer (5.1.0.rc1)
21
- actionpack (= 5.1.0.rc1)
22
- actionview (= 5.1.0.rc1)
23
- activejob (= 5.1.0.rc1)
24
- mail (~> 2.5, >= 2.5.4)
25
- rails-dom-testing (~> 2.0)
26
- actionpack (5.1.0.rc1)
27
- actionview (= 5.1.0.rc1)
28
- activesupport (= 5.1.0.rc1)
29
- rack (~> 2.0)
30
- rack-test (~> 0.6.3)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
33
- actionview (5.1.0.rc1)
34
- activesupport (= 5.1.0.rc1)
35
- builder (~> 3.1)
36
- erubi (~> 1.4)
37
- rails-dom-testing (~> 2.0)
38
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
39
- activejob (5.1.0.rc1)
40
- activesupport (= 5.1.0.rc1)
41
- globalid (>= 0.3.6)
42
- activemodel (5.1.0.rc1)
43
- activesupport (= 5.1.0.rc1)
44
- activerecord (5.1.0.rc1)
45
- activemodel (= 5.1.0.rc1)
46
- activesupport (= 5.1.0.rc1)
47
- arel (~> 8.0)
48
- activesupport (5.1.0.rc1)
49
- concurrent-ruby (~> 1.0, >= 1.0.2)
50
- i18n (~> 0.7)
51
- minitest (~> 5.1)
52
- tzinfo (~> 1.1)
53
- addressable (2.5.1)
54
- public_suffix (~> 2.0, >= 2.0.2)
55
- arel (8.0.0)
56
- babel-source (5.8.35)
57
- babel-transpiler (0.7.0)
58
- babel-source (>= 4.0, < 6)
59
- execjs (~> 2.0)
60
- builder (3.2.3)
61
- byebug (9.0.6)
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.5)
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
- erubi (1.6.0)
86
- eventmachine (1.2.3)
87
- execjs (2.7.0)
88
- ffi (1.9.17)
89
- globalid (0.4.0)
90
- activesupport (>= 4.2.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-console (0.1.0)
100
- hyper-operation
101
- hyper-react (0.12.5)
102
- hyper-store (>= 0.2.1)
103
- hyperloop-config (>= 0.9.7)
104
- opal (>= 0.8.0)
105
- opal-activesupport (>= 0.2.0)
106
- hyper-store (0.2.3)
107
- hyperloop-config (>= 0.9.2)
108
- hyperloop-config (0.9.8)
109
- opal
110
- opal-browser
111
- i18n (0.8.1)
112
- jbuilder (2.6.3)
113
- activesupport (>= 3.0.0, < 5.2)
114
- multi_json (~> 1.2)
115
- jquery-rails (4.3.1)
116
- rails-dom-testing (>= 1, < 3)
117
- railties (>= 4.2.0)
118
- thor (>= 0.14, < 2.0)
119
- libv8 (3.16.14.17)
120
- listen (3.0.8)
121
- rb-fsevent (~> 0.9, >= 0.9.4)
122
- rb-inotify (~> 0.9, >= 0.9.7)
123
- loofah (2.0.3)
124
- nokogiri (>= 1.5.9)
125
- mail (2.6.4)
126
- mime-types (>= 1.16, < 4)
127
- method_source (0.8.2)
128
- mime-types (3.1)
129
- mime-types-data (~> 3.2015)
130
- mime-types-data (3.2016.0521)
131
- mini_portile2 (2.1.0)
132
- minitest (5.10.1)
133
- multi_json (1.12.1)
134
- mutations (0.8.1)
135
- activesupport
136
- mysql2 (0.4.5)
137
- nio4r (2.0.0)
138
- nokogiri (1.7.1)
139
- mini_portile2 (~> 2.1.0)
140
- opal (0.10.3)
141
- hike (~> 1.2)
142
- sourcemap (~> 0.1.0)
143
- sprockets (~> 3.1)
144
- tilt (>= 1.4)
145
- opal-activesupport (0.3.0)
146
- opal (>= 0.5.0, < 1.0.0)
147
- opal-browser (0.2.0)
148
- opal
149
- paggio
150
- opal-jquery (0.4.2)
151
- opal (>= 0.7.0, < 0.11.0)
152
- opal-rails (0.9.2)
153
- jquery-rails
154
- opal (>= 0.8.0, < 0.11)
155
- opal-activesupport (>= 0.0.5)
156
- opal-jquery (~> 0.4.0)
157
- opal-sprockets (~> 0.4.0)
158
- rails (>= 4.1, < 6.0)
159
- sprockets-rails (>= 2.3.3, < 4.0)
160
- opal-sprockets (0.4.0.0.10.0.3.0.0)
161
- opal (~> 0.10.0)
162
- sprockets (~> 3.0)
163
- tilt (>= 1.4)
164
- opal_hot_reloader (0.1.4)
165
- listen (~> 3.0)
166
- websocket
167
- paggio (0.2.6)
168
- public_suffix (2.0.5)
169
- puma (3.8.2)
170
- pusher (1.3.1)
171
- httpclient (~> 2.7)
172
- multi_json (~> 1.0)
173
- pusher-signature (~> 0.1.8)
174
- pusher-fake (1.8.0)
175
- em-http-request (~> 1.1)
176
- em-websocket (~> 0.5)
177
- multi_json (~> 1.6)
178
- thin (~> 1.5)
179
- pusher-signature (0.1.8)
180
- rack (2.0.1)
181
- rack-test (0.6.3)
182
- rack (>= 1.0)
183
- rails (5.1.0.rc1)
184
- actioncable (= 5.1.0.rc1)
185
- actionmailer (= 5.1.0.rc1)
186
- actionpack (= 5.1.0.rc1)
187
- actionview (= 5.1.0.rc1)
188
- activejob (= 5.1.0.rc1)
189
- activemodel (= 5.1.0.rc1)
190
- activerecord (= 5.1.0.rc1)
191
- activesupport (= 5.1.0.rc1)
192
- bundler (>= 1.3.0, < 2.0)
193
- railties (= 5.1.0.rc1)
194
- sprockets-rails (>= 2.0.0)
195
- rails-dom-testing (2.0.2)
196
- activesupport (>= 4.2.0, < 6.0)
197
- nokogiri (~> 1.6)
198
- rails-html-sanitizer (1.0.3)
199
- loofah (~> 2.0)
200
- railties (5.1.0.rc1)
201
- actionpack (= 5.1.0.rc1)
202
- activesupport (= 5.1.0.rc1)
203
- method_source
204
- rake (>= 0.8.7)
205
- thor (>= 0.18.1, < 2.0)
206
- rake (12.0.0)
207
- rb-fsevent (0.9.8)
208
- rb-inotify (0.9.8)
209
- ffi (>= 0.5.0)
210
- react-rails (1.9.0)
211
- babel-transpiler (>= 0.7.0)
212
- coffee-script-source (~> 1.8)
213
- connection_pool
214
- execjs
215
- railties (>= 3.2)
216
- tilt
217
- ref (2.0.0)
218
- sass (3.4.23)
219
- sass-rails (5.0.6)
220
- railties (>= 4.0.0, < 6)
221
- sass (~> 3.1)
222
- sprockets (>= 2.8, < 4.0)
223
- sprockets-rails (>= 2.0, < 4.0)
224
- tilt (>= 1.1, < 3)
225
- sourcemap (0.1.1)
226
- spring (2.0.1)
227
- activesupport (>= 4.2)
228
- spring-watcher-listen (2.0.1)
229
- listen (>= 2.7, < 4.0)
230
- spring (>= 1.2, < 3.0)
231
- sprockets (3.7.1)
232
- concurrent-ruby (~> 1.0)
233
- rack (> 1, < 3)
234
- sprockets-rails (3.2.0)
235
- actionpack (>= 4.0)
236
- activesupport (>= 4.0)
237
- sprockets (>= 3.0.0)
238
- therubyracer (0.12.3)
239
- libv8 (~> 3.16.14.15)
240
- ref
241
- thin (1.7.0)
242
- daemons (~> 1.0, >= 1.0.9)
243
- eventmachine (~> 1.0, >= 1.0.4)
244
- rack (>= 1, < 3)
245
- thor (0.19.4)
246
- thread_safe (0.3.6)
247
- tilt (2.0.7)
248
- turbolinks (5.0.1)
249
- turbolinks-source (~> 5)
250
- turbolinks-source (5.0.0)
251
- tzinfo (1.2.3)
252
- thread_safe (~> 0.1)
253
- uglifier (3.0.4)
254
- execjs (>= 0.3.0, < 3)
255
- web-console (3.4.0)
256
- actionview (>= 5.0)
257
- activemodel (>= 5.0)
258
- debug_inspector
259
- railties (>= 5.0)
260
- websocket (1.2.4)
261
- websocket-driver (0.6.5)
262
- websocket-extensions (>= 0.1.0)
263
- websocket-extensions (0.1.2)
264
-
265
- PLATFORMS
266
- ruby
267
-
268
- DEPENDENCIES
269
- byebug
270
- coffee-rails (~> 4.2)
271
- hyper-console
272
- hyper-operation!
273
- jbuilder (~> 2.5)
274
- jquery-rails
275
- listen (~> 3.0.5)
276
- mysql2
277
- opal-browser
278
- opal_hot_reloader
279
- puma (~> 3.0)
280
- rails (= 5.1.0.rc1)
281
- sass-rails (~> 5.0)
282
- spring
283
- spring-watcher-listen (~> 2.0.0)
284
- therubyracer
285
- turbolinks (~> 5)
286
- tzinfo-data
287
- uglifier (>= 1.3.0)
288
- web-console (>= 3.3.0)
289
-
290
- BUNDLED WITH
291
- 1.12.5