hippo-fw 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (535) hide show
  1. checksums.yaml +7 -0
  2. data/.dir-locals.el +8 -0
  3. data/.eslintrc.js +7 -0
  4. data/.flowconfig +2 -0
  5. data/.gitignore +22 -0
  6. data/.jshintrc +3 -0
  7. data/.rubocop.yml +9 -0
  8. data/.ruby-version +1 -0
  9. data/.travis.yml +24 -0
  10. data/Gemfile +17 -0
  11. data/Guardfile +19 -0
  12. data/LICENSE-MIT.txt +21 -0
  13. data/README.md +36 -0
  14. data/Rakefile +39 -0
  15. data/bin/hippo +5 -0
  16. data/client/extension.js +0 -0
  17. data/client/hippo/__mocks__/config.js +17 -0
  18. data/client/hippo/access/index.js +4 -0
  19. data/client/hippo/access/login-dialog.jsx +38 -0
  20. data/client/hippo/access/styles.scss +0 -0
  21. data/client/hippo/boot.jsx +41 -0
  22. data/client/hippo/components/asset.jsx +81 -0
  23. data/client/hippo/components/asset.scss +15 -0
  24. data/client/hippo/components/calendar/Calendar.jsx +25 -0
  25. data/client/hippo/components/calendar/index.js +3 -0
  26. data/client/hippo/components/calendar/styles.scss +3 -0
  27. data/client/hippo/components/data-list.jsx +105 -0
  28. data/client/hippo/components/data-table.jsx +243 -0
  29. data/client/hippo/components/data-table/header-cell.jsx +94 -0
  30. data/client/hippo/components/data-table/table-styles.scss +34 -0
  31. data/client/hippo/components/enabled.js.erb +5 -0
  32. data/client/hippo/components/field-validation.js +7 -0
  33. data/client/hippo/components/form.jsx +65 -0
  34. data/client/hippo/components/form/field-prop-type.js +16 -0
  35. data/client/hippo/components/form/fields.jsx +76 -0
  36. data/client/hippo/components/form/fields/checkbox-wrapper.jsx +21 -0
  37. data/client/hippo/components/form/fields/date-wrapper.jsx +49 -0
  38. data/client/hippo/components/form/fields/form-field.scss +4 -0
  39. data/client/hippo/components/form/fields/select-wrapper.jsx +31 -0
  40. data/client/hippo/components/form/fields/text-wrapper.jsx +20 -0
  41. data/client/hippo/components/form/model.js +95 -0
  42. data/client/hippo/components/form/validations.js +0 -0
  43. data/client/hippo/components/form/wrapper.jsx +40 -0
  44. data/client/hippo/components/grid/config.json +3 -0
  45. data/client/hippo/components/grid/editors.scss +78 -0
  46. data/client/hippo/components/grid/index.js +2 -0
  47. data/client/hippo/components/grid/row-editor.scss +74 -0
  48. data/client/hippo/components/grid/styles.scss +118 -0
  49. data/client/hippo/components/icon.jsx +70 -0
  50. data/client/hippo/components/index.js +3 -0
  51. data/client/hippo/components/modal/index.js +1 -0
  52. data/client/hippo/components/modal/styles.scss +12 -0
  53. data/client/hippo/components/network-activity-overlay.jsx +127 -0
  54. data/client/hippo/components/network-activity-overlay.scss +52 -0
  55. data/client/hippo/components/query-builder.jsx +157 -0
  56. data/client/hippo/components/record-finder.jsx +95 -0
  57. data/client/hippo/components/record-finder/config.json +3 -0
  58. data/client/hippo/components/record-finder/query-layer.jsx +74 -0
  59. data/client/hippo/components/record-finder/record-finder.scss +12 -0
  60. data/client/hippo/components/request-spinner/index.js +1 -0
  61. data/client/hippo/components/screen.jsx +34 -0
  62. data/client/hippo/components/select-field/index.js +2 -0
  63. data/client/hippo/components/select-field/styles.scss +27 -0
  64. data/client/hippo/components/shared/AssetsListing.jsx +23 -0
  65. data/client/hippo/components/shared/Checkbox.jsx +49 -0
  66. data/client/hippo/components/shared/CountBadge.jsx +13 -0
  67. data/client/hippo/components/shared/DateTime.jsx +58 -0
  68. data/client/hippo/components/shared/DisplayValue.jsx +15 -0
  69. data/client/hippo/components/shared/ErrorDisplay.jsx +37 -0
  70. data/client/hippo/components/shared/FieldMixin.jsx +254 -0
  71. data/client/hippo/components/shared/FieldSet.jsx +52 -0
  72. data/client/hippo/components/shared/FieldWrapper.jsx +94 -0
  73. data/client/hippo/components/shared/FormGroup.jsx +41 -0
  74. data/client/hippo/components/shared/GenericField.jsx +7 -0
  75. data/client/hippo/components/shared/IconButton.jsx +13 -0
  76. data/client/hippo/components/shared/ImageAsset.jsx +78 -0
  77. data/client/hippo/components/shared/IndeterminateCheckbox.jsx +31 -0
  78. data/client/hippo/components/shared/Input.jsx +16 -0
  79. data/client/hippo/components/shared/InputFieldMixin.jsx +78 -0
  80. data/client/hippo/components/shared/JobProgress.jsx +46 -0
  81. data/client/hippo/components/shared/NumberInput.jsx +37 -0
  82. data/client/hippo/components/shared/PanelHeader.jsx +15 -0
  83. data/client/hippo/components/shared/RadioField.jsx +33 -0
  84. data/client/hippo/components/shared/ResizeSensor.jsx +18 -0
  85. data/client/hippo/components/shared/ScreenWrapper.jsx +17 -0
  86. data/client/hippo/components/shared/TextArea.jsx +19 -0
  87. data/client/hippo/components/shared/Throbber.jsx +8 -0
  88. data/client/hippo/components/shared/ToggleField.jsx +2 -0
  89. data/client/hippo/components/shared/Tooltip.jsx +23 -0
  90. data/client/hippo/components/shared/fields.scss +58 -0
  91. data/client/hippo/components/shared/fieldset.scss +27 -0
  92. data/client/hippo/components/shared/image-asset.scss +53 -0
  93. data/client/hippo/components/shared/index.js +5 -0
  94. data/client/hippo/components/shared/overlay.scss +83 -0
  95. data/client/hippo/components/shared/resize-sensor.scss +30 -0
  96. data/client/hippo/components/shared/styles.scss +64 -0
  97. data/client/hippo/components/shared/throbber.scss +53 -0
  98. data/client/hippo/components/toolbar/changes-notification.scss +63 -0
  99. data/client/hippo/components/toolbar/index.js +3 -0
  100. data/client/hippo/components/toolbar/styles.scss +74 -0
  101. data/client/hippo/components/warning-notification.jsx +14 -0
  102. data/client/hippo/config.js +72 -0
  103. data/client/hippo/extensions/EarlyExtensions.js.erb +3 -0
  104. data/client/hippo/extensions/LateLoaded.js.erb +4 -0
  105. data/client/hippo/extensions/base.js +23 -0
  106. data/client/hippo/extensions/hippo.js +11 -0
  107. data/client/hippo/extensions/index.js +47 -0
  108. data/client/hippo/extensions/namespace-available.js.erb +3 -0
  109. data/client/hippo/fonts/fontawesome-webfont.woff +0 -0
  110. data/client/hippo/fonts/fontawesome-webfont.woff2 +0 -0
  111. data/client/hippo/index.js +1 -0
  112. data/client/hippo/index.scss.erb +31 -0
  113. data/client/hippo/lib/__mocks__/loader.js +11 -0
  114. data/client/hippo/lib/__mocks__/request-assets.js +6 -0
  115. data/client/hippo/lib/all.js +14 -0
  116. data/client/hippo/lib/bootstrap.js +45 -0
  117. data/client/hippo/lib/index.js.erb +6 -0
  118. data/client/hippo/lib/loader.js +67 -0
  119. data/client/hippo/lib/request-assets.js +38 -0
  120. data/client/hippo/lib/smooth-scroll.js +68 -0
  121. data/client/hippo/lib/util.js +101 -0
  122. data/client/hippo/models/PubSub.js +208 -0
  123. data/client/hippo/models/__mocks__/sync.js +17 -0
  124. data/client/hippo/models/asset.js +104 -0
  125. data/client/hippo/models/base.js +142 -0
  126. data/client/hippo/models/collection.js +58 -0
  127. data/client/hippo/models/decorators.js +72 -0
  128. data/client/hippo/models/index.js +10 -0
  129. data/client/hippo/models/query.js +116 -0
  130. data/client/hippo/models/query/array-result.js +188 -0
  131. data/client/hippo/models/query/clause.js +52 -0
  132. data/client/hippo/models/query/field.js +63 -0
  133. data/client/hippo/models/query/info.js +43 -0
  134. data/client/hippo/models/query/operator.js +21 -0
  135. data/client/hippo/models/query/result.js +21 -0
  136. data/client/hippo/models/query/types.js +5 -0
  137. data/client/hippo/models/sync.js +135 -0
  138. data/client/hippo/models/system-setting.js +26 -0
  139. data/client/hippo/react/DefaultComponentNotFound.jsx +23 -0
  140. data/client/hippo/react/Root.jsx +24 -0
  141. data/client/hippo/react/index.js +7 -0
  142. data/client/hippo/react/viewport-root.jsx +44 -0
  143. data/client/hippo/screens/all.js.erb +3 -0
  144. data/client/hippo/screens/definition.js +67 -0
  145. data/client/hippo/screens/group.js +35 -0
  146. data/client/hippo/screens/index.js +34 -0
  147. data/client/hippo/screens/instance.js +99 -0
  148. data/client/hippo/screens/mixins/index.js +0 -0
  149. data/client/hippo/screens/register.js.erb +14 -0
  150. data/client/hippo/screens/styles.scss +8 -0
  151. data/client/hippo/screens/system-settings.jsx +92 -0
  152. data/client/hippo/screens/system-settings/mailer-config.jsx +53 -0
  153. data/client/hippo/screens/system-settings/system-settings.scss +8 -0
  154. data/client/hippo/screens/user-management.jsx +67 -0
  155. data/client/hippo/screens/user-management/edit-form.jsx +94 -0
  156. data/client/hippo/screens/user-management/index.scss +7 -0
  157. data/client/hippo/styles/fonts.scss +23 -0
  158. data/client/hippo/styles/fonts/_animated.scss +34 -0
  159. data/client/hippo/styles/fonts/_bordered-pulled.scss +25 -0
  160. data/client/hippo/styles/fonts/_core.scss +12 -0
  161. data/client/hippo/styles/fonts/_fixed-width.scss +6 -0
  162. data/client/hippo/styles/fonts/_icons.scss +789 -0
  163. data/client/hippo/styles/fonts/_larger.scss +13 -0
  164. data/client/hippo/styles/fonts/_list.scss +19 -0
  165. data/client/hippo/styles/fonts/_mixins.scss +60 -0
  166. data/client/hippo/styles/fonts/_path.scss +10 -0
  167. data/client/hippo/styles/fonts/_rotated-flipped.scss +20 -0
  168. data/client/hippo/styles/fonts/_screen-reader.scss +5 -0
  169. data/client/hippo/styles/fonts/_stacked.scss +20 -0
  170. data/client/hippo/styles/fonts/_variables.scss +800 -0
  171. data/client/hippo/styles/fonts/font-awesome.scss +18 -0
  172. data/client/hippo/styles/fonts/index.scss +2 -0
  173. data/client/hippo/styles/global.scss +3 -0
  174. data/client/hippo/styles/global/fancy-header.scss +14 -0
  175. data/client/hippo/styles/global/mixins.scss +5 -0
  176. data/client/hippo/styles/global/styles.scss +6 -0
  177. data/client/hippo/styles/variables.scss +28 -0
  178. data/client/hippo/testing/index.js +6 -0
  179. data/client/hippo/testing/matchers.js +14 -0
  180. data/client/hippo/testing/mocks/fetch.js +54 -0
  181. data/client/hippo/testing/screens.js +64 -0
  182. data/client/hippo/testing/utils.js +1 -0
  183. data/client/hippo/user.js +93 -0
  184. data/client/hippo/workspace/content.jsx +22 -0
  185. data/client/hippo/workspace/foo.js +0 -0
  186. data/client/hippo/workspace/index.jsx +85 -0
  187. data/client/hippo/workspace/menu-group.jsx +39 -0
  188. data/client/hippo/workspace/menu-option.jsx +41 -0
  189. data/client/hippo/workspace/menu.jsx +71 -0
  190. data/client/hippo/workspace/navbar.jsx +46 -0
  191. data/client/hippo/workspace/screen.jsx +50 -0
  192. data/client/hippo/workspace/styles.scss +61 -0
  193. data/client/hippo/workspace/styles/forms.scss +4 -0
  194. data/client/hippo/workspace/styles/header.scss +69 -0
  195. data/client/hippo/workspace/styles/keybindings.scss +6 -0
  196. data/client/hippo/workspace/styles/layout.scss +230 -0
  197. data/client/hippo/workspace/styles/screens.scss +15 -0
  198. data/client/hippo/workspace/styles/tabs.scss +141 -0
  199. data/client/hippo/workspace/tabs.jsx +60 -0
  200. data/client/hippo/workspace/viewport.jsx +82 -0
  201. data/client/images/hippo/ajax-loader.gif +0 -0
  202. data/client/images/hippo/logo-sm.png +0 -0
  203. data/coffeelint.json +49 -0
  204. data/command-reference-files/initial/.babelrc +20 -0
  205. data/command-reference-files/initial/.eslintrc.js +7 -0
  206. data/command-reference-files/initial/.gitignore +4 -0
  207. data/command-reference-files/initial/.rubocop.yml +9 -0
  208. data/command-reference-files/initial/Gemfile +9 -0
  209. data/command-reference-files/initial/Guardfile +13 -0
  210. data/command-reference-files/initial/Rakefile +2 -0
  211. data/command-reference-files/initial/client/appy-app/components/.gitkeep +0 -0
  212. data/command-reference-files/initial/client/appy-app/extension.js +32 -0
  213. data/command-reference-files/initial/client/appy-app/index.js +6 -0
  214. data/command-reference-files/initial/client/appy-app/models/.gitkeep +0 -0
  215. data/command-reference-files/initial/client/appy-app/models/base.js +11 -0
  216. data/command-reference-files/initial/client/appy-app/screens/.gitkeep +0 -0
  217. data/command-reference-files/initial/client/appy-app/styles.scss +1 -0
  218. data/command-reference-files/initial/config.ru +7 -0
  219. data/command-reference-files/initial/config/database.yml +11 -0
  220. data/command-reference-files/initial/config/initialize.rb +10 -0
  221. data/command-reference-files/initial/config/jest.config.json +19 -0
  222. data/command-reference-files/initial/config/jest/babel-transform.js +47 -0
  223. data/command-reference-files/initial/config/routes.rb +4 -0
  224. data/command-reference-files/initial/config/screens.rb +10 -0
  225. data/command-reference-files/initial/config/webpack.config.js +106 -0
  226. data/command-reference-files/initial/db/.gitkeep +0 -0
  227. data/command-reference-files/initial/lib/appy-app.rb +15 -0
  228. data/command-reference-files/initial/lib/appy-app/extension.rb +22 -0
  229. data/command-reference-files/initial/lib/appy-app/model.rb +11 -0
  230. data/command-reference-files/initial/lib/appy-app/version.rb +3 -0
  231. data/command-reference-files/initial/package.json +6 -0
  232. data/command-reference-files/initial/spec/client/.eslintrc.js +20 -0
  233. data/command-reference-files/initial/spec/client/setup.js +17 -0
  234. data/command-reference-files/initial/spec/server/spec_helper.rb +8 -0
  235. data/command-reference-files/initial/views/index.html +69 -0
  236. data/command-reference-files/model/client/appy-app/models/test_test.js +12 -0
  237. data/command-reference-files/model/config/routes.rb +4 -0
  238. data/command-reference-files/model/db/migrate/20150218032025_create_test_tests.rb +10 -0
  239. data/command-reference-files/model/lib/appy-app/model.rb +12 -0
  240. data/command-reference-files/model/lib/appy-app/models/test_test.rb +7 -0
  241. data/command-reference-files/model/spec/client/models/test_test.spec.js +8 -0
  242. data/command-reference-files/model/spec/fixtures/appy-app/test_test.yml +11 -0
  243. data/command-reference-files/model/spec/server/test_test_spec.rb +10 -0
  244. data/command-reference-files/screen/client/appy-app/extension.js +32 -0
  245. data/command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx +22 -0
  246. data/command-reference-files/screen/config/screens.rb +19 -0
  247. data/command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx +12 -0
  248. data/config.ru +5 -0
  249. data/config/database.yml +9 -0
  250. data/config/jest.config.json +27 -0
  251. data/config/jest/babel-transform.js +47 -0
  252. data/config/jest/style-mock.js +2 -0
  253. data/config/jest/yaml-transform.js +19 -0
  254. data/config/routes.rb +28 -0
  255. data/config/screens.rb +42 -0
  256. data/config/webpack.config.js +105 -0
  257. data/db/migrate/01_create_system_settings.rb +10 -0
  258. data/db/migrate/02_create_assets.rb +13 -0
  259. data/db/migrate/20140615031600_create_users.rb +12 -0
  260. data/db/seed.rb +1 -0
  261. data/docs/command.md +114 -0
  262. data/docs/model.md +217 -0
  263. data/docs/react.md +137 -0
  264. data/docs/todo-example-part-1.md +69 -0
  265. data/docs/welcome.md +0 -0
  266. data/hippo-fw.gemspec +79 -0
  267. data/lib/generators/hippo/migrations/install_generator.rb +42 -0
  268. data/lib/hippo-fw.rb +1 -0
  269. data/lib/hippo.rb +34 -0
  270. data/lib/hippo/access.rb +49 -0
  271. data/lib/hippo/access/authentication_provider.rb +79 -0
  272. data/lib/hippo/access/config/database.yml +9 -0
  273. data/lib/hippo/access/config/routes.rb +20 -0
  274. data/lib/hippo/access/locked_fields.rb +43 -0
  275. data/lib/hippo/access/public/files/1nty/7ebo/n7k0/8b2ac0bbd97f401951fe40546f977200.png +0 -0
  276. data/lib/hippo/access/public/files/6hgp/eiw1/8dua/ba944287e36e101713a9c1ad793353b8.png +0 -0
  277. data/lib/hippo/access/public/files/94bd/9agc/2ua3/33800e285d7145760650ac88d1c558fb.png +0 -0
  278. data/lib/hippo/access/public/files/cr1e/vfwc/fvrh/0e7fe6ef12d622bfb93e024883c2f81c.png +0 -0
  279. data/lib/hippo/access/public/files/kezo/fm8j/u6xl/dfc47658aedd8e546abff63366a7285d.png +0 -0
  280. data/lib/hippo/access/public/files/n5c4/uovf/jec6/7ee9a3519e2b60430e095160a23f1d77.png +0 -0
  281. data/lib/hippo/access/role.rb +86 -0
  282. data/lib/hippo/access/role_collection.rb +88 -0
  283. data/lib/hippo/access/roles/administrator.rb +32 -0
  284. data/lib/hippo/access/roles/basic_user.rb +13 -0
  285. data/lib/hippo/access/roles/support.rb +15 -0
  286. data/lib/hippo/access/test_fixture_extensions.rb +16 -0
  287. data/lib/hippo/access/track_modifications.rb +79 -0
  288. data/lib/hippo/access/version.rb +5 -0
  289. data/lib/hippo/api.rb +23 -0
  290. data/lib/hippo/api/cable.rb +57 -0
  291. data/lib/hippo/api/controller_base.rb +299 -0
  292. data/lib/hippo/api/default_routes.rb +38 -0
  293. data/lib/hippo/api/error_formatter.rb +37 -0
  294. data/lib/hippo/api/formatted_reply.rb +62 -0
  295. data/lib/hippo/api/generic_controller.rb +35 -0
  296. data/lib/hippo/api/handlers/asset.rb +38 -0
  297. data/lib/hippo/api/handlers/print.rb +15 -0
  298. data/lib/hippo/api/handlers/user_session.rb +42 -0
  299. data/lib/hippo/api/helper_methods.rb +58 -0
  300. data/lib/hippo/api/pub_sub.rb +36 -0
  301. data/lib/hippo/api/request_wrapper.rb +105 -0
  302. data/lib/hippo/api/root.rb +70 -0
  303. data/lib/hippo/api/routing.rb +111 -0
  304. data/lib/hippo/api/sprockets_extension.rb +105 -0
  305. data/lib/hippo/api/to_json.rb +7 -0
  306. data/lib/hippo/api/updates.rb +37 -0
  307. data/lib/hippo/asset.rb +18 -0
  308. data/lib/hippo/capistrano.rb +30 -0
  309. data/lib/hippo/cli.rb +50 -0
  310. data/lib/hippo/command.rb +43 -0
  311. data/lib/hippo/command/app.rb +90 -0
  312. data/lib/hippo/command/client_config.rb +69 -0
  313. data/lib/hippo/command/client_model_update.rb +65 -0
  314. data/lib/hippo/command/console.rb +23 -0
  315. data/lib/hippo/command/db.rb +36 -0
  316. data/lib/hippo/command/db.usage +1 -0
  317. data/lib/hippo/command/generate.rb +24 -0
  318. data/lib/hippo/command/generate_component.rb +28 -0
  319. data/lib/hippo/command/generate_component.usage +11 -0
  320. data/lib/hippo/command/generate_migration.rb +33 -0
  321. data/lib/hippo/command/generate_model.rb +91 -0
  322. data/lib/hippo/command/generate_model.usage +45 -0
  323. data/lib/hippo/command/generate_screen.rb +40 -0
  324. data/lib/hippo/command/generate_screen.usage +8 -0
  325. data/lib/hippo/command/guard.rb +18 -0
  326. data/lib/hippo/command/jest.rb +40 -0
  327. data/lib/hippo/command/migration_support.rb +29 -0
  328. data/lib/hippo/command/model_attribute.rb +193 -0
  329. data/lib/hippo/command/named_command.rb +33 -0
  330. data/lib/hippo/command/puma.rb +56 -0
  331. data/lib/hippo/command/server.rb +19 -0
  332. data/lib/hippo/command/server.usage +3 -0
  333. data/lib/hippo/command/update.rb +13 -0
  334. data/lib/hippo/command/update_model.rb +127 -0
  335. data/lib/hippo/command/update_model.usage +2 -0
  336. data/lib/hippo/command/webpack.rb +57 -0
  337. data/lib/hippo/command/webpack_view.rb +32 -0
  338. data/lib/hippo/concerns/all.rb +15 -0
  339. data/lib/hippo/concerns/api_path.rb +21 -0
  340. data/lib/hippo/concerns/asset_uploader.rb +38 -0
  341. data/lib/hippo/concerns/association_extensions.rb +94 -0
  342. data/lib/hippo/concerns/attr_accessor_with_default.rb +68 -0
  343. data/lib/hippo/concerns/code_identifier.rb +43 -0
  344. data/lib/hippo/concerns/export_associations.rb +52 -0
  345. data/lib/hippo/concerns/export_join_tables.rb +39 -0
  346. data/lib/hippo/concerns/export_methods.rb +104 -0
  347. data/lib/hippo/concerns/export_scope.rb +64 -0
  348. data/lib/hippo/concerns/exported_limit_evaluator.rb +17 -0
  349. data/lib/hippo/concerns/pub_sub.rb +127 -0
  350. data/lib/hippo/concerns/queries.rb +24 -0
  351. data/lib/hippo/concerns/random_identifier.rb +37 -0
  352. data/lib/hippo/concerns/sanitize_fields.rb +32 -0
  353. data/lib/hippo/concerns/set_attribute_data.rb +125 -0
  354. data/lib/hippo/concerns/sorting_expressions.rb +34 -0
  355. data/lib/hippo/configuration.rb +143 -0
  356. data/lib/hippo/db.rb +57 -0
  357. data/lib/hippo/db/migrations.rb +32 -0
  358. data/lib/hippo/environment.rb +22 -0
  359. data/lib/hippo/extension.rb +112 -0
  360. data/lib/hippo/extension/definition.rb +90 -0
  361. data/lib/hippo/guard_tasks.rb +62 -0
  362. data/lib/hippo/hippo_guard_plugin.rb +80 -0
  363. data/lib/hippo/job.rb +82 -0
  364. data/lib/hippo/job/failure_logger.rb +33 -0
  365. data/lib/hippo/logger.rb +64 -0
  366. data/lib/hippo/mailer.rb +28 -0
  367. data/lib/hippo/model.rb +24 -0
  368. data/lib/hippo/multi_server_boot.rb +26 -0
  369. data/lib/hippo/numbers.rb +72 -0
  370. data/lib/hippo/rails_engine.rb +5 -0
  371. data/lib/hippo/rake_tasks.rb +69 -0
  372. data/lib/hippo/redis.rb +13 -0
  373. data/lib/hippo/reloadable_sinatra.rb +24 -0
  374. data/lib/hippo/reloadable_view.rb +13 -0
  375. data/lib/hippo/screen.rb +152 -0
  376. data/lib/hippo/spec_helper.rb +141 -0
  377. data/lib/hippo/strings.rb +56 -0
  378. data/lib/hippo/system_settings.rb +72 -0
  379. data/lib/hippo/templates/base.rb +44 -0
  380. data/lib/hippo/templates/latex.rb +101 -0
  381. data/lib/hippo/templates/liquid.rb +28 -0
  382. data/lib/hippo/user.rb +152 -0
  383. data/lib/hippo/validators/all.rb +2 -0
  384. data/lib/hippo/validators/email.rb +17 -0
  385. data/lib/hippo/validators/set.rb +18 -0
  386. data/lib/hippo/version.rb +5 -0
  387. data/lib/hippo/workspace.rb +4 -0
  388. data/lib/hippo/workspace/config/screens.rb +6 -0
  389. data/package.json +82 -0
  390. data/spec/client/.eslintrc.js +20 -0
  391. data/spec/client/access/login-dialog.spec.jsx +28 -0
  392. data/spec/client/components/__snapshots__/asset.spec.jsx.snap +48 -0
  393. data/spec/client/components/__snapshots__/network-activity-overlay.spec.jsx.snap +35 -0
  394. data/spec/client/components/__snapshots__/query-builder.spec.jsx.snap +82 -0
  395. data/spec/client/components/asset.spec.jsx +16 -0
  396. data/spec/client/components/data-list.spec.jsx +36 -0
  397. data/spec/client/components/data-table.spec.jsx +55 -0
  398. data/spec/client/components/form.spec.jsx +63 -0
  399. data/spec/client/components/network-activity-overlay.spec.jsx +30 -0
  400. data/spec/client/components/query-builder.spec.jsx +45 -0
  401. data/spec/client/components/record-finder.spec.jsx +45 -0
  402. data/spec/client/extension/base.spec.js +15 -0
  403. data/spec/client/lib/util.spec.js +48 -0
  404. data/spec/client/models/asset.spec.js +50 -0
  405. data/spec/client/models/base.spec.js +95 -0
  406. data/spec/client/models/collection.spec.js +51 -0
  407. data/spec/client/models/query.spec.js +243 -0
  408. data/spec/client/models/sync.spec.js +42 -0
  409. data/spec/client/models/system-setting.spec.js +19 -0
  410. data/spec/client/screens/__snapshots__/system-settings.spec.jsx.snap +364 -0
  411. data/spec/client/screens/__snapshots__/tabs.spec.jsx.snap +127 -0
  412. data/spec/client/screens/definition.spec.js +24 -0
  413. data/spec/client/screens/group.spec.js +33 -0
  414. data/spec/client/screens/instance.spec.js +61 -0
  415. data/spec/client/screens/system-settings.spec.jsx +22 -0
  416. data/spec/client/screens/tabs.spec.jsx +36 -0
  417. data/spec/client/screens/user-management.spec.jsx +48 -0
  418. data/spec/client/setup.js +12 -0
  419. data/spec/client/test-logo.json +41 -0
  420. data/spec/client/test-models.js +94 -0
  421. data/spec/client/user.spec.js +19 -0
  422. data/spec/client/workspace/__snapshots__/menu.spec.jsx.snap +380 -0
  423. data/spec/client/workspace/menu.spec.jsx +52 -0
  424. data/spec/factories/user.rb +11 -0
  425. data/spec/fixtures/logo.png +0 -0
  426. data/spec/fixtures/system_settings.yml +8 -0
  427. data/spec/fixtures/test_printer.tex +22 -0
  428. data/spec/fixtures/user.yml +2 -0
  429. data/spec/hippo/components/grid/GridSpec.coffee +56 -0
  430. data/spec/hippo/components/grid/PopoverEditorSpec.coffee +47 -0
  431. data/spec/hippo/components/grid/RowEditorSpec.coffee +98 -0
  432. data/spec/hippo/components/select-field/SelectFieldSpec.coffee +106 -0
  433. data/spec/hippo/components/shared/NetworkActivityOverlaySpec.coffee +34 -0
  434. data/spec/hippo/helpers/.gitkeep +0 -0
  435. data/spec/hippo/helpers/hippo-helpers.coffee +5 -0
  436. data/spec/hippo/helpers/jasmine-matchers.js +1580 -0
  437. data/spec/hippo/helpers/mock-ajax.js +573 -0
  438. data/spec/hippo/models/AssociationMapSpec.coffee +85 -0
  439. data/spec/hippo/models/AssociationProxySpec.coffee +76 -0
  440. data/spec/hippo/models/BaseSpec.coffee +155 -0
  441. data/spec/hippo/models/CollectionSpec.coffee +32 -0
  442. data/spec/hippo/models/EnumMapSpec.coffee +26 -0
  443. data/spec/hippo/models/PubSubSpec.coffee +71 -0
  444. data/spec/hippo/models/QuerySpec.coffee +19 -0
  445. data/spec/hippo/models/SyncSpec.coffee +28 -0
  446. data/spec/hippo/models/UserSpec.coffee +17 -0
  447. data/spec/hippo/react/mixins/DataSpec.coffee +74 -0
  448. data/spec/hippo/screens/DefinitionsSpec.coffee +33 -0
  449. data/spec/hippo/views/BaseSpec.coffee +147 -0
  450. data/spec/hippo/views/FormBindingsSpec.coffee +32 -0
  451. data/spec/server/api/controller_base_spec.rb +101 -0
  452. data/spec/server/assertions.rb +11 -0
  453. data/spec/server/asset_spec.rb +42 -0
  454. data/spec/server/command_spec.rb +73 -0
  455. data/spec/server/concerns/api_path_spec.rb +20 -0
  456. data/spec/server/concerns/association_extensions_spec.rb +24 -0
  457. data/spec/server/concerns/attr_accessor_with_default_spec.rb +63 -0
  458. data/spec/server/concerns/export_methods_spec.rb +34 -0
  459. data/spec/server/concerns/export_scope_spec.rb +14 -0
  460. data/spec/server/concerns/exported_limits_spec.rb +51 -0
  461. data/spec/server/concerns/pub_sub_spec.rb +132 -0
  462. data/spec/server/concerns/set_attribute_data_spec.rb +76 -0
  463. data/spec/server/concerns/sorting_expressions_spec.rb +34 -0
  464. data/spec/server/concerns/track_modifications_spec.rb +18 -0
  465. data/spec/server/configuration_spec.rb +26 -0
  466. data/spec/server/job_spec.rb +54 -0
  467. data/spec/server/mailer_spec.rb +33 -0
  468. data/spec/server/numbers_spec.rb +25 -0
  469. data/spec/server/print/form_spec.rb +29 -0
  470. data/spec/server/spec_helper.rb +74 -0
  471. data/spec/server/strings_spec.rb +41 -0
  472. data/spec/server/system_settings_spec.rb +39 -0
  473. data/tasks/migrations.rake +22 -0
  474. data/tasks/publish.rake +8 -0
  475. data/templates/.babelrc +20 -0
  476. data/templates/.gitignore +4 -0
  477. data/templates/Gemfile +9 -0
  478. data/templates/Guardfile +13 -0
  479. data/templates/Rakefile +2 -0
  480. data/templates/client/components/.gitkeep +0 -0
  481. data/templates/client/components/BaseComponent.coffee +9 -0
  482. data/templates/client/components/Component.cjsx +4 -0
  483. data/templates/client/components/template.html +3 -0
  484. data/templates/client/extension.js +32 -0
  485. data/templates/client/index.js +6 -0
  486. data/templates/client/models/base.js +11 -0
  487. data/templates/client/models/model.js +17 -0
  488. data/templates/client/screens/screen.jsx +22 -0
  489. data/templates/client/styles.scss +1 -0
  490. data/templates/config.ru +7 -0
  491. data/templates/config/database.yml +11 -0
  492. data/templates/config/initialize.rb +10 -0
  493. data/templates/config/jest.config.json +19 -0
  494. data/templates/config/jest/babel-transform.js +47 -0
  495. data/templates/config/routes.rb +4 -0
  496. data/templates/config/screen.rb +9 -0
  497. data/templates/config/screens.rb +10 -0
  498. data/templates/config/webpack.config.js +106 -0
  499. data/templates/db/create_table_migration.rb +19 -0
  500. data/templates/gitignore +4 -0
  501. data/templates/js/config-data.js +10 -0
  502. data/templates/js/jest.config.json +11 -0
  503. data/templates/js/root-view.html +71 -0
  504. data/templates/js/screen-definitions.js +22 -0
  505. data/templates/lib/namespace.rb +15 -0
  506. data/templates/lib/namespace/base_model.rb +11 -0
  507. data/templates/lib/namespace/extension.rb +22 -0
  508. data/templates/lib/namespace/model.rb +7 -0
  509. data/templates/lib/namespace/version.rb +3 -0
  510. data/templates/public/.gitkeep +0 -0
  511. data/templates/spec/client/components/ComponentSpec.coffee +5 -0
  512. data/templates/spec/client/models/model.spec.js +8 -0
  513. data/templates/spec/client/screen.spec.jsx +12 -0
  514. data/templates/spec/client/setup.js +17 -0
  515. data/templates/spec/fixtures/namespace/model.yml +16 -0
  516. data/templates/spec/server/model_spec.rb +10 -0
  517. data/templates/spec/server/spec_helper.rb +8 -0
  518. data/test.js +7 -0
  519. data/views/hippo_root_view.erb +68 -0
  520. data/views/index.html +71 -0
  521. data/yard_ext/all.rb +9 -0
  522. data/yard_ext/code_identifier_handler.rb +33 -0
  523. data/yard_ext/concern_meta_methods.rb +60 -0
  524. data/yard_ext/config_options.rb +27 -0
  525. data/yard_ext/exported_scope.rb +4 -0
  526. data/yard_ext/immutable_handler.rb +17 -0
  527. data/yard_ext/json_attr_accessor.rb +22 -0
  528. data/yard_ext/locked_fields_handler.rb +21 -0
  529. data/yard_ext/templates/default/layout/html/layout.erb +20 -0
  530. data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
  531. data/yard_ext/templates/default/method_details/setup.rb +3 -0
  532. data/yard_ext/validators.rb +1 -0
  533. data/yard_ext/visible_id_handler.rb +38 -0
  534. data/yarn.lock +6562 -0
  535. metadata +1182 -0
metadata ADDED
@@ -0,0 +1,1182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hippo-fw
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.1
5
+ platform: ruby
6
+ authors:
7
+ - Nathan Stitt
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activejob
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 5.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 5.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activerecord
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 5.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 5.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: actioncable
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 5.0.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 5.0.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: mail
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.6'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: liquid
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '4.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: erb_latex
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: shrine-memory
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.2'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.2'
111
+ - !ruby/object:Gem::Dependency
112
+ name: factory_girl
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '4.8'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '4.8'
125
+ - !ruby/object:Gem::Dependency
126
+ name: faker
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.7'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.7'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '3.0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '3.0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: database_cleaner
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '1.3'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '1.3'
167
+ - !ruby/object:Gem::Dependency
168
+ name: vcr
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '3.0'
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '3.0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: sinatra
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: 2.0.0.rc2
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: 2.0.0.rc2
195
+ - !ruby/object:Gem::Dependency
196
+ name: rack-protection
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: 2.0.0.rc2
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: 2.0.0.rc2
209
+ - !ruby/object:Gem::Dependency
210
+ name: rack
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: '2.0'
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: '2.0'
223
+ - !ruby/object:Gem::Dependency
224
+ name: rack-cors
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '0.4'
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - "~>"
235
+ - !ruby/object:Gem::Version
236
+ version: '0.4'
237
+ - !ruby/object:Gem::Dependency
238
+ name: rack-test
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: '0.6'
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: '0.6'
251
+ - !ruby/object:Gem::Dependency
252
+ name: bcrypt
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - "~>"
256
+ - !ruby/object:Gem::Version
257
+ version: '3.1'
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - "~>"
263
+ - !ruby/object:Gem::Version
264
+ version: '3.1'
265
+ - !ruby/object:Gem::Dependency
266
+ name: shrine
267
+ requirement: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - "~>"
270
+ - !ruby/object:Gem::Version
271
+ version: '2.4'
272
+ type: :runtime
273
+ prerelease: false
274
+ version_requirements: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - "~>"
277
+ - !ruby/object:Gem::Version
278
+ version: '2.4'
279
+ - !ruby/object:Gem::Dependency
280
+ name: image_processing
281
+ requirement: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - "~>"
284
+ - !ruby/object:Gem::Version
285
+ version: '0.4'
286
+ type: :runtime
287
+ prerelease: false
288
+ version_requirements: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - "~>"
291
+ - !ruby/object:Gem::Version
292
+ version: '0.4'
293
+ - !ruby/object:Gem::Dependency
294
+ name: execjs
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - "~>"
298
+ - !ruby/object:Gem::Version
299
+ version: '2.6'
300
+ type: :runtime
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - "~>"
305
+ - !ruby/object:Gem::Version
306
+ version: '2.6'
307
+ - !ruby/object:Gem::Dependency
308
+ name: fastimage
309
+ requirement: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - "~>"
312
+ - !ruby/object:Gem::Version
313
+ version: '2.0'
314
+ type: :runtime
315
+ prerelease: false
316
+ version_requirements: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - "~>"
319
+ - !ruby/object:Gem::Version
320
+ version: '2.0'
321
+ - !ruby/object:Gem::Dependency
322
+ name: guard
323
+ requirement: !ruby/object:Gem::Requirement
324
+ requirements:
325
+ - - "~>"
326
+ - !ruby/object:Gem::Version
327
+ version: '2.13'
328
+ type: :runtime
329
+ prerelease: false
330
+ version_requirements: !ruby/object:Gem::Requirement
331
+ requirements:
332
+ - - "~>"
333
+ - !ruby/object:Gem::Version
334
+ version: '2.13'
335
+ - !ruby/object:Gem::Dependency
336
+ name: rspec-rails
337
+ requirement: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - "~>"
340
+ - !ruby/object:Gem::Version
341
+ version: '3.5'
342
+ type: :runtime
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - "~>"
347
+ - !ruby/object:Gem::Version
348
+ version: '3.5'
349
+ - !ruby/object:Gem::Dependency
350
+ name: guard-jest
351
+ requirement: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - "~>"
354
+ - !ruby/object:Gem::Version
355
+ version: '0.1'
356
+ type: :runtime
357
+ prerelease: false
358
+ version_requirements: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - "~>"
361
+ - !ruby/object:Gem::Version
362
+ version: '0.1'
363
+ - !ruby/object:Gem::Dependency
364
+ name: guard-rspec
365
+ requirement: !ruby/object:Gem::Requirement
366
+ requirements:
367
+ - - "~>"
368
+ - !ruby/object:Gem::Version
369
+ version: '4.7'
370
+ type: :runtime
371
+ prerelease: false
372
+ version_requirements: !ruby/object:Gem::Requirement
373
+ requirements:
374
+ - - "~>"
375
+ - !ruby/object:Gem::Version
376
+ version: '4.7'
377
+ - !ruby/object:Gem::Dependency
378
+ name: hashie
379
+ requirement: !ruby/object:Gem::Requirement
380
+ requirements:
381
+ - - "~>"
382
+ - !ruby/object:Gem::Version
383
+ version: '3.3'
384
+ type: :runtime
385
+ prerelease: false
386
+ version_requirements: !ruby/object:Gem::Requirement
387
+ requirements:
388
+ - - "~>"
389
+ - !ruby/object:Gem::Version
390
+ version: '3.3'
391
+ - !ruby/object:Gem::Dependency
392
+ name: jobba
393
+ requirement: !ruby/object:Gem::Requirement
394
+ requirements:
395
+ - - "~>"
396
+ - !ruby/object:Gem::Version
397
+ version: '1.4'
398
+ type: :runtime
399
+ prerelease: false
400
+ version_requirements: !ruby/object:Gem::Requirement
401
+ requirements:
402
+ - - "~>"
403
+ - !ruby/object:Gem::Version
404
+ version: '1.4'
405
+ - !ruby/object:Gem::Dependency
406
+ name: jwt
407
+ requirement: !ruby/object:Gem::Requirement
408
+ requirements:
409
+ - - "~>"
410
+ - !ruby/object:Gem::Version
411
+ version: '1.5'
412
+ type: :runtime
413
+ prerelease: false
414
+ version_requirements: !ruby/object:Gem::Requirement
415
+ requirements:
416
+ - - "~>"
417
+ - !ruby/object:Gem::Version
418
+ version: '1.5'
419
+ - !ruby/object:Gem::Dependency
420
+ name: mini_magick
421
+ requirement: !ruby/object:Gem::Requirement
422
+ requirements:
423
+ - - "~>"
424
+ - !ruby/object:Gem::Version
425
+ version: '4.3'
426
+ type: :runtime
427
+ prerelease: false
428
+ version_requirements: !ruby/object:Gem::Requirement
429
+ requirements:
430
+ - - "~>"
431
+ - !ruby/object:Gem::Version
432
+ version: '4.3'
433
+ - !ruby/object:Gem::Dependency
434
+ name: oj
435
+ requirement: !ruby/object:Gem::Requirement
436
+ requirements:
437
+ - - "~>"
438
+ - !ruby/object:Gem::Version
439
+ version: '2.1'
440
+ type: :runtime
441
+ prerelease: false
442
+ version_requirements: !ruby/object:Gem::Requirement
443
+ requirements:
444
+ - - "~>"
445
+ - !ruby/object:Gem::Version
446
+ version: '2.1'
447
+ - !ruby/object:Gem::Dependency
448
+ name: pg
449
+ requirement: !ruby/object:Gem::Requirement
450
+ requirements:
451
+ - - "~>"
452
+ - !ruby/object:Gem::Version
453
+ version: '0.8'
454
+ type: :runtime
455
+ prerelease: false
456
+ version_requirements: !ruby/object:Gem::Requirement
457
+ requirements:
458
+ - - "~>"
459
+ - !ruby/object:Gem::Version
460
+ version: '0.8'
461
+ - !ruby/object:Gem::Dependency
462
+ name: rake
463
+ requirement: !ruby/object:Gem::Requirement
464
+ requirements:
465
+ - - "~>"
466
+ - !ruby/object:Gem::Version
467
+ version: '12.0'
468
+ type: :runtime
469
+ prerelease: false
470
+ version_requirements: !ruby/object:Gem::Requirement
471
+ requirements:
472
+ - - "~>"
473
+ - !ruby/object:Gem::Version
474
+ version: '12.0'
475
+ - !ruby/object:Gem::Dependency
476
+ name: require_all
477
+ requirement: !ruby/object:Gem::Requirement
478
+ requirements:
479
+ - - "~>"
480
+ - !ruby/object:Gem::Version
481
+ version: '1.3'
482
+ type: :runtime
483
+ prerelease: false
484
+ version_requirements: !ruby/object:Gem::Requirement
485
+ requirements:
486
+ - - "~>"
487
+ - !ruby/object:Gem::Version
488
+ version: '1.3'
489
+ - !ruby/object:Gem::Dependency
490
+ name: resque
491
+ requirement: !ruby/object:Gem::Requirement
492
+ requirements:
493
+ - - "~>"
494
+ - !ruby/object:Gem::Version
495
+ version: '1.27'
496
+ type: :runtime
497
+ prerelease: false
498
+ version_requirements: !ruby/object:Gem::Requirement
499
+ requirements:
500
+ - - "~>"
501
+ - !ruby/object:Gem::Version
502
+ version: '1.27'
503
+ - !ruby/object:Gem::Dependency
504
+ name: sanitize
505
+ requirement: !ruby/object:Gem::Requirement
506
+ requirements:
507
+ - - "~>"
508
+ - !ruby/object:Gem::Version
509
+ version: '3.0'
510
+ type: :runtime
511
+ prerelease: false
512
+ version_requirements: !ruby/object:Gem::Requirement
513
+ requirements:
514
+ - - "~>"
515
+ - !ruby/object:Gem::Version
516
+ version: '3.0'
517
+ - !ruby/object:Gem::Dependency
518
+ name: webpack_driver
519
+ requirement: !ruby/object:Gem::Requirement
520
+ requirements:
521
+ - - "~>"
522
+ - !ruby/object:Gem::Version
523
+ version: '0.2'
524
+ type: :runtime
525
+ prerelease: false
526
+ version_requirements: !ruby/object:Gem::Requirement
527
+ requirements:
528
+ - - "~>"
529
+ - !ruby/object:Gem::Version
530
+ version: '0.2'
531
+ - !ruby/object:Gem::Dependency
532
+ name: knitter
533
+ requirement: !ruby/object:Gem::Requirement
534
+ requirements:
535
+ - - "~>"
536
+ - !ruby/object:Gem::Version
537
+ version: 0.2.2
538
+ type: :runtime
539
+ prerelease: false
540
+ version_requirements: !ruby/object:Gem::Requirement
541
+ requirements:
542
+ - - "~>"
543
+ - !ruby/object:Gem::Version
544
+ version: 0.2.2
545
+ - !ruby/object:Gem::Dependency
546
+ name: thor
547
+ requirement: !ruby/object:Gem::Requirement
548
+ requirements:
549
+ - - "~>"
550
+ - !ruby/object:Gem::Version
551
+ version: '0.19'
552
+ type: :runtime
553
+ prerelease: false
554
+ version_requirements: !ruby/object:Gem::Requirement
555
+ requirements:
556
+ - - "~>"
557
+ - !ruby/object:Gem::Version
558
+ version: '0.19'
559
+ - !ruby/object:Gem::Dependency
560
+ name: bundler
561
+ requirement: !ruby/object:Gem::Requirement
562
+ requirements:
563
+ - - "~>"
564
+ - !ruby/object:Gem::Version
565
+ version: '1.5'
566
+ type: :development
567
+ prerelease: false
568
+ version_requirements: !ruby/object:Gem::Requirement
569
+ requirements:
570
+ - - "~>"
571
+ - !ruby/object:Gem::Version
572
+ version: '1.5'
573
+ - !ruby/object:Gem::Dependency
574
+ name: diffy
575
+ requirement: !ruby/object:Gem::Requirement
576
+ requirements:
577
+ - - "~>"
578
+ - !ruby/object:Gem::Version
579
+ version: '3.0'
580
+ type: :development
581
+ prerelease: false
582
+ version_requirements: !ruby/object:Gem::Requirement
583
+ requirements:
584
+ - - "~>"
585
+ - !ruby/object:Gem::Version
586
+ version: '3.0'
587
+ - !ruby/object:Gem::Dependency
588
+ name: growl
589
+ requirement: !ruby/object:Gem::Requirement
590
+ requirements:
591
+ - - "~>"
592
+ - !ruby/object:Gem::Version
593
+ version: '1.0'
594
+ type: :development
595
+ prerelease: false
596
+ version_requirements: !ruby/object:Gem::Requirement
597
+ requirements:
598
+ - - "~>"
599
+ - !ruby/object:Gem::Version
600
+ version: '1.0'
601
+ - !ruby/object:Gem::Dependency
602
+ name: shrine-memory
603
+ requirement: !ruby/object:Gem::Requirement
604
+ requirements:
605
+ - - "~>"
606
+ - !ruby/object:Gem::Version
607
+ version: '0.2'
608
+ type: :development
609
+ prerelease: false
610
+ version_requirements: !ruby/object:Gem::Requirement
611
+ requirements:
612
+ - - "~>"
613
+ - !ruby/object:Gem::Version
614
+ version: '0.2'
615
+ description: Hippo is a framework for writing single page web applications. It's
616
+ a full stack framework that contains both server and client.
617
+ email:
618
+ - nathan@argosity.com
619
+ executables:
620
+ - hippo
621
+ extensions: []
622
+ extra_rdoc_files: []
623
+ files:
624
+ - ".dir-locals.el"
625
+ - ".eslintrc.js"
626
+ - ".flowconfig"
627
+ - ".gitignore"
628
+ - ".jshintrc"
629
+ - ".rubocop.yml"
630
+ - ".ruby-version"
631
+ - ".travis.yml"
632
+ - Gemfile
633
+ - Guardfile
634
+ - LICENSE-MIT.txt
635
+ - README.md
636
+ - Rakefile
637
+ - bin/hippo
638
+ - client/extension.js
639
+ - client/hippo/__mocks__/config.js
640
+ - client/hippo/access/index.js
641
+ - client/hippo/access/login-dialog.jsx
642
+ - client/hippo/access/styles.scss
643
+ - client/hippo/boot.jsx
644
+ - client/hippo/components/asset.jsx
645
+ - client/hippo/components/asset.scss
646
+ - client/hippo/components/calendar/Calendar.jsx
647
+ - client/hippo/components/calendar/index.js
648
+ - client/hippo/components/calendar/styles.scss
649
+ - client/hippo/components/data-list.jsx
650
+ - client/hippo/components/data-table.jsx
651
+ - client/hippo/components/data-table/header-cell.jsx
652
+ - client/hippo/components/data-table/table-styles.scss
653
+ - client/hippo/components/enabled.js.erb
654
+ - client/hippo/components/field-validation.js
655
+ - client/hippo/components/form.jsx
656
+ - client/hippo/components/form/field-prop-type.js
657
+ - client/hippo/components/form/fields.jsx
658
+ - client/hippo/components/form/fields/checkbox-wrapper.jsx
659
+ - client/hippo/components/form/fields/date-wrapper.jsx
660
+ - client/hippo/components/form/fields/form-field.scss
661
+ - client/hippo/components/form/fields/select-wrapper.jsx
662
+ - client/hippo/components/form/fields/text-wrapper.jsx
663
+ - client/hippo/components/form/model.js
664
+ - client/hippo/components/form/validations.js
665
+ - client/hippo/components/form/wrapper.jsx
666
+ - client/hippo/components/grid/config.json
667
+ - client/hippo/components/grid/editors.scss
668
+ - client/hippo/components/grid/index.js
669
+ - client/hippo/components/grid/row-editor.scss
670
+ - client/hippo/components/grid/styles.scss
671
+ - client/hippo/components/icon.jsx
672
+ - client/hippo/components/index.js
673
+ - client/hippo/components/modal/index.js
674
+ - client/hippo/components/modal/styles.scss
675
+ - client/hippo/components/network-activity-overlay.jsx
676
+ - client/hippo/components/network-activity-overlay.scss
677
+ - client/hippo/components/query-builder.jsx
678
+ - client/hippo/components/record-finder.jsx
679
+ - client/hippo/components/record-finder/config.json
680
+ - client/hippo/components/record-finder/query-layer.jsx
681
+ - client/hippo/components/record-finder/record-finder.scss
682
+ - client/hippo/components/request-spinner/index.js
683
+ - client/hippo/components/screen.jsx
684
+ - client/hippo/components/select-field/index.js
685
+ - client/hippo/components/select-field/styles.scss
686
+ - client/hippo/components/shared/AssetsListing.jsx
687
+ - client/hippo/components/shared/Checkbox.jsx
688
+ - client/hippo/components/shared/CountBadge.jsx
689
+ - client/hippo/components/shared/DateTime.jsx
690
+ - client/hippo/components/shared/DisplayValue.jsx
691
+ - client/hippo/components/shared/ErrorDisplay.jsx
692
+ - client/hippo/components/shared/FieldMixin.jsx
693
+ - client/hippo/components/shared/FieldSet.jsx
694
+ - client/hippo/components/shared/FieldWrapper.jsx
695
+ - client/hippo/components/shared/FormGroup.jsx
696
+ - client/hippo/components/shared/GenericField.jsx
697
+ - client/hippo/components/shared/IconButton.jsx
698
+ - client/hippo/components/shared/ImageAsset.jsx
699
+ - client/hippo/components/shared/IndeterminateCheckbox.jsx
700
+ - client/hippo/components/shared/Input.jsx
701
+ - client/hippo/components/shared/InputFieldMixin.jsx
702
+ - client/hippo/components/shared/JobProgress.jsx
703
+ - client/hippo/components/shared/NumberInput.jsx
704
+ - client/hippo/components/shared/PanelHeader.jsx
705
+ - client/hippo/components/shared/RadioField.jsx
706
+ - client/hippo/components/shared/ResizeSensor.jsx
707
+ - client/hippo/components/shared/ScreenWrapper.jsx
708
+ - client/hippo/components/shared/TextArea.jsx
709
+ - client/hippo/components/shared/Throbber.jsx
710
+ - client/hippo/components/shared/ToggleField.jsx
711
+ - client/hippo/components/shared/Tooltip.jsx
712
+ - client/hippo/components/shared/fields.scss
713
+ - client/hippo/components/shared/fieldset.scss
714
+ - client/hippo/components/shared/image-asset.scss
715
+ - client/hippo/components/shared/index.js
716
+ - client/hippo/components/shared/overlay.scss
717
+ - client/hippo/components/shared/resize-sensor.scss
718
+ - client/hippo/components/shared/styles.scss
719
+ - client/hippo/components/shared/throbber.scss
720
+ - client/hippo/components/toolbar/changes-notification.scss
721
+ - client/hippo/components/toolbar/index.js
722
+ - client/hippo/components/toolbar/styles.scss
723
+ - client/hippo/components/warning-notification.jsx
724
+ - client/hippo/config.js
725
+ - client/hippo/extensions/EarlyExtensions.js.erb
726
+ - client/hippo/extensions/LateLoaded.js.erb
727
+ - client/hippo/extensions/base.js
728
+ - client/hippo/extensions/hippo.js
729
+ - client/hippo/extensions/index.js
730
+ - client/hippo/extensions/namespace-available.js.erb
731
+ - client/hippo/fonts/fontawesome-webfont.woff
732
+ - client/hippo/fonts/fontawesome-webfont.woff2
733
+ - client/hippo/index.js
734
+ - client/hippo/index.scss.erb
735
+ - client/hippo/lib/__mocks__/loader.js
736
+ - client/hippo/lib/__mocks__/request-assets.js
737
+ - client/hippo/lib/all.js
738
+ - client/hippo/lib/bootstrap.js
739
+ - client/hippo/lib/index.js.erb
740
+ - client/hippo/lib/loader.js
741
+ - client/hippo/lib/request-assets.js
742
+ - client/hippo/lib/smooth-scroll.js
743
+ - client/hippo/lib/util.js
744
+ - client/hippo/models/PubSub.js
745
+ - client/hippo/models/__mocks__/sync.js
746
+ - client/hippo/models/asset.js
747
+ - client/hippo/models/base.js
748
+ - client/hippo/models/collection.js
749
+ - client/hippo/models/decorators.js
750
+ - client/hippo/models/index.js
751
+ - client/hippo/models/query.js
752
+ - client/hippo/models/query/array-result.js
753
+ - client/hippo/models/query/clause.js
754
+ - client/hippo/models/query/field.js
755
+ - client/hippo/models/query/info.js
756
+ - client/hippo/models/query/operator.js
757
+ - client/hippo/models/query/result.js
758
+ - client/hippo/models/query/types.js
759
+ - client/hippo/models/sync.js
760
+ - client/hippo/models/system-setting.js
761
+ - client/hippo/react/DefaultComponentNotFound.jsx
762
+ - client/hippo/react/Root.jsx
763
+ - client/hippo/react/index.js
764
+ - client/hippo/react/viewport-root.jsx
765
+ - client/hippo/screens/all.js.erb
766
+ - client/hippo/screens/definition.js
767
+ - client/hippo/screens/group.js
768
+ - client/hippo/screens/index.js
769
+ - client/hippo/screens/instance.js
770
+ - client/hippo/screens/mixins/index.js
771
+ - client/hippo/screens/register.js.erb
772
+ - client/hippo/screens/styles.scss
773
+ - client/hippo/screens/system-settings.jsx
774
+ - client/hippo/screens/system-settings/mailer-config.jsx
775
+ - client/hippo/screens/system-settings/system-settings.scss
776
+ - client/hippo/screens/user-management.jsx
777
+ - client/hippo/screens/user-management/edit-form.jsx
778
+ - client/hippo/screens/user-management/index.scss
779
+ - client/hippo/styles/fonts.scss
780
+ - client/hippo/styles/fonts/_animated.scss
781
+ - client/hippo/styles/fonts/_bordered-pulled.scss
782
+ - client/hippo/styles/fonts/_core.scss
783
+ - client/hippo/styles/fonts/_fixed-width.scss
784
+ - client/hippo/styles/fonts/_icons.scss
785
+ - client/hippo/styles/fonts/_larger.scss
786
+ - client/hippo/styles/fonts/_list.scss
787
+ - client/hippo/styles/fonts/_mixins.scss
788
+ - client/hippo/styles/fonts/_path.scss
789
+ - client/hippo/styles/fonts/_rotated-flipped.scss
790
+ - client/hippo/styles/fonts/_screen-reader.scss
791
+ - client/hippo/styles/fonts/_stacked.scss
792
+ - client/hippo/styles/fonts/_variables.scss
793
+ - client/hippo/styles/fonts/font-awesome.scss
794
+ - client/hippo/styles/fonts/index.scss
795
+ - client/hippo/styles/global.scss
796
+ - client/hippo/styles/global/fancy-header.scss
797
+ - client/hippo/styles/global/mixins.scss
798
+ - client/hippo/styles/global/styles.scss
799
+ - client/hippo/styles/variables.scss
800
+ - client/hippo/testing/index.js
801
+ - client/hippo/testing/matchers.js
802
+ - client/hippo/testing/mocks/fetch.js
803
+ - client/hippo/testing/screens.js
804
+ - client/hippo/testing/utils.js
805
+ - client/hippo/user.js
806
+ - client/hippo/workspace/content.jsx
807
+ - client/hippo/workspace/foo.js
808
+ - client/hippo/workspace/index.jsx
809
+ - client/hippo/workspace/menu-group.jsx
810
+ - client/hippo/workspace/menu-option.jsx
811
+ - client/hippo/workspace/menu.jsx
812
+ - client/hippo/workspace/navbar.jsx
813
+ - client/hippo/workspace/screen.jsx
814
+ - client/hippo/workspace/styles.scss
815
+ - client/hippo/workspace/styles/forms.scss
816
+ - client/hippo/workspace/styles/header.scss
817
+ - client/hippo/workspace/styles/keybindings.scss
818
+ - client/hippo/workspace/styles/layout.scss
819
+ - client/hippo/workspace/styles/screens.scss
820
+ - client/hippo/workspace/styles/tabs.scss
821
+ - client/hippo/workspace/tabs.jsx
822
+ - client/hippo/workspace/viewport.jsx
823
+ - client/images/hippo/ajax-loader.gif
824
+ - client/images/hippo/logo-sm.png
825
+ - coffeelint.json
826
+ - command-reference-files/initial/.babelrc
827
+ - command-reference-files/initial/.eslintrc.js
828
+ - command-reference-files/initial/.gitignore
829
+ - command-reference-files/initial/.rubocop.yml
830
+ - command-reference-files/initial/Gemfile
831
+ - command-reference-files/initial/Guardfile
832
+ - command-reference-files/initial/Rakefile
833
+ - command-reference-files/initial/client/appy-app/components/.gitkeep
834
+ - command-reference-files/initial/client/appy-app/extension.js
835
+ - command-reference-files/initial/client/appy-app/index.js
836
+ - command-reference-files/initial/client/appy-app/models/.gitkeep
837
+ - command-reference-files/initial/client/appy-app/models/base.js
838
+ - command-reference-files/initial/client/appy-app/screens/.gitkeep
839
+ - command-reference-files/initial/client/appy-app/styles.scss
840
+ - command-reference-files/initial/config.ru
841
+ - command-reference-files/initial/config/database.yml
842
+ - command-reference-files/initial/config/initialize.rb
843
+ - command-reference-files/initial/config/jest.config.json
844
+ - command-reference-files/initial/config/jest/babel-transform.js
845
+ - command-reference-files/initial/config/routes.rb
846
+ - command-reference-files/initial/config/screens.rb
847
+ - command-reference-files/initial/config/webpack.config.js
848
+ - command-reference-files/initial/db/.gitkeep
849
+ - command-reference-files/initial/lib/appy-app.rb
850
+ - command-reference-files/initial/lib/appy-app/extension.rb
851
+ - command-reference-files/initial/lib/appy-app/model.rb
852
+ - command-reference-files/initial/lib/appy-app/version.rb
853
+ - command-reference-files/initial/package.json
854
+ - command-reference-files/initial/spec/client/.eslintrc.js
855
+ - command-reference-files/initial/spec/client/setup.js
856
+ - command-reference-files/initial/spec/server/spec_helper.rb
857
+ - command-reference-files/initial/views/index.html
858
+ - command-reference-files/model/client/appy-app/models/test_test.js
859
+ - command-reference-files/model/config/routes.rb
860
+ - command-reference-files/model/db/migrate/20150218032025_create_test_tests.rb
861
+ - command-reference-files/model/lib/appy-app/model.rb
862
+ - command-reference-files/model/lib/appy-app/models/test_test.rb
863
+ - command-reference-files/model/spec/client/models/test_test.spec.js
864
+ - command-reference-files/model/spec/fixtures/appy-app/test_test.yml
865
+ - command-reference-files/model/spec/server/test_test_spec.rb
866
+ - command-reference-files/screen/client/appy-app/extension.js
867
+ - command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx
868
+ - command-reference-files/screen/config/screens.rb
869
+ - command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
870
+ - config.ru
871
+ - config/database.yml
872
+ - config/jest.config.json
873
+ - config/jest/babel-transform.js
874
+ - config/jest/style-mock.js
875
+ - config/jest/yaml-transform.js
876
+ - config/routes.rb
877
+ - config/screens.rb
878
+ - config/webpack.config.js
879
+ - db/migrate/01_create_system_settings.rb
880
+ - db/migrate/02_create_assets.rb
881
+ - db/migrate/20140615031600_create_users.rb
882
+ - db/seed.rb
883
+ - docs/command.md
884
+ - docs/model.md
885
+ - docs/react.md
886
+ - docs/todo-example-part-1.md
887
+ - docs/welcome.md
888
+ - hippo-fw.gemspec
889
+ - lib/generators/hippo/migrations/install_generator.rb
890
+ - lib/hippo-fw.rb
891
+ - lib/hippo.rb
892
+ - lib/hippo/access.rb
893
+ - lib/hippo/access/authentication_provider.rb
894
+ - lib/hippo/access/config/database.yml
895
+ - lib/hippo/access/config/routes.rb
896
+ - lib/hippo/access/locked_fields.rb
897
+ - lib/hippo/access/public/files/1nty/7ebo/n7k0/8b2ac0bbd97f401951fe40546f977200.png
898
+ - lib/hippo/access/public/files/6hgp/eiw1/8dua/ba944287e36e101713a9c1ad793353b8.png
899
+ - lib/hippo/access/public/files/94bd/9agc/2ua3/33800e285d7145760650ac88d1c558fb.png
900
+ - lib/hippo/access/public/files/cr1e/vfwc/fvrh/0e7fe6ef12d622bfb93e024883c2f81c.png
901
+ - lib/hippo/access/public/files/kezo/fm8j/u6xl/dfc47658aedd8e546abff63366a7285d.png
902
+ - lib/hippo/access/public/files/n5c4/uovf/jec6/7ee9a3519e2b60430e095160a23f1d77.png
903
+ - lib/hippo/access/role.rb
904
+ - lib/hippo/access/role_collection.rb
905
+ - lib/hippo/access/roles/administrator.rb
906
+ - lib/hippo/access/roles/basic_user.rb
907
+ - lib/hippo/access/roles/support.rb
908
+ - lib/hippo/access/test_fixture_extensions.rb
909
+ - lib/hippo/access/track_modifications.rb
910
+ - lib/hippo/access/version.rb
911
+ - lib/hippo/api.rb
912
+ - lib/hippo/api/cable.rb
913
+ - lib/hippo/api/controller_base.rb
914
+ - lib/hippo/api/default_routes.rb
915
+ - lib/hippo/api/error_formatter.rb
916
+ - lib/hippo/api/formatted_reply.rb
917
+ - lib/hippo/api/generic_controller.rb
918
+ - lib/hippo/api/handlers/asset.rb
919
+ - lib/hippo/api/handlers/print.rb
920
+ - lib/hippo/api/handlers/user_session.rb
921
+ - lib/hippo/api/helper_methods.rb
922
+ - lib/hippo/api/pub_sub.rb
923
+ - lib/hippo/api/request_wrapper.rb
924
+ - lib/hippo/api/root.rb
925
+ - lib/hippo/api/routing.rb
926
+ - lib/hippo/api/sprockets_extension.rb
927
+ - lib/hippo/api/to_json.rb
928
+ - lib/hippo/api/updates.rb
929
+ - lib/hippo/asset.rb
930
+ - lib/hippo/capistrano.rb
931
+ - lib/hippo/cli.rb
932
+ - lib/hippo/command.rb
933
+ - lib/hippo/command/app.rb
934
+ - lib/hippo/command/client_config.rb
935
+ - lib/hippo/command/client_model_update.rb
936
+ - lib/hippo/command/console.rb
937
+ - lib/hippo/command/db.rb
938
+ - lib/hippo/command/db.usage
939
+ - lib/hippo/command/generate.rb
940
+ - lib/hippo/command/generate_component.rb
941
+ - lib/hippo/command/generate_component.usage
942
+ - lib/hippo/command/generate_migration.rb
943
+ - lib/hippo/command/generate_model.rb
944
+ - lib/hippo/command/generate_model.usage
945
+ - lib/hippo/command/generate_screen.rb
946
+ - lib/hippo/command/generate_screen.usage
947
+ - lib/hippo/command/guard.rb
948
+ - lib/hippo/command/jest.rb
949
+ - lib/hippo/command/migration_support.rb
950
+ - lib/hippo/command/model_attribute.rb
951
+ - lib/hippo/command/named_command.rb
952
+ - lib/hippo/command/puma.rb
953
+ - lib/hippo/command/server.rb
954
+ - lib/hippo/command/server.usage
955
+ - lib/hippo/command/update.rb
956
+ - lib/hippo/command/update_model.rb
957
+ - lib/hippo/command/update_model.usage
958
+ - lib/hippo/command/webpack.rb
959
+ - lib/hippo/command/webpack_view.rb
960
+ - lib/hippo/concerns/all.rb
961
+ - lib/hippo/concerns/api_path.rb
962
+ - lib/hippo/concerns/asset_uploader.rb
963
+ - lib/hippo/concerns/association_extensions.rb
964
+ - lib/hippo/concerns/attr_accessor_with_default.rb
965
+ - lib/hippo/concerns/code_identifier.rb
966
+ - lib/hippo/concerns/export_associations.rb
967
+ - lib/hippo/concerns/export_join_tables.rb
968
+ - lib/hippo/concerns/export_methods.rb
969
+ - lib/hippo/concerns/export_scope.rb
970
+ - lib/hippo/concerns/exported_limit_evaluator.rb
971
+ - lib/hippo/concerns/pub_sub.rb
972
+ - lib/hippo/concerns/queries.rb
973
+ - lib/hippo/concerns/random_identifier.rb
974
+ - lib/hippo/concerns/sanitize_fields.rb
975
+ - lib/hippo/concerns/set_attribute_data.rb
976
+ - lib/hippo/concerns/sorting_expressions.rb
977
+ - lib/hippo/configuration.rb
978
+ - lib/hippo/db.rb
979
+ - lib/hippo/db/migrations.rb
980
+ - lib/hippo/environment.rb
981
+ - lib/hippo/extension.rb
982
+ - lib/hippo/extension/definition.rb
983
+ - lib/hippo/guard_tasks.rb
984
+ - lib/hippo/hippo_guard_plugin.rb
985
+ - lib/hippo/job.rb
986
+ - lib/hippo/job/failure_logger.rb
987
+ - lib/hippo/logger.rb
988
+ - lib/hippo/mailer.rb
989
+ - lib/hippo/model.rb
990
+ - lib/hippo/multi_server_boot.rb
991
+ - lib/hippo/numbers.rb
992
+ - lib/hippo/rails_engine.rb
993
+ - lib/hippo/rake_tasks.rb
994
+ - lib/hippo/redis.rb
995
+ - lib/hippo/reloadable_sinatra.rb
996
+ - lib/hippo/reloadable_view.rb
997
+ - lib/hippo/screen.rb
998
+ - lib/hippo/spec_helper.rb
999
+ - lib/hippo/strings.rb
1000
+ - lib/hippo/system_settings.rb
1001
+ - lib/hippo/templates/base.rb
1002
+ - lib/hippo/templates/latex.rb
1003
+ - lib/hippo/templates/liquid.rb
1004
+ - lib/hippo/user.rb
1005
+ - lib/hippo/validators/all.rb
1006
+ - lib/hippo/validators/email.rb
1007
+ - lib/hippo/validators/set.rb
1008
+ - lib/hippo/version.rb
1009
+ - lib/hippo/workspace.rb
1010
+ - lib/hippo/workspace/config/screens.rb
1011
+ - log/.gitkeep
1012
+ - package.json
1013
+ - spec/client/.eslintrc.js
1014
+ - spec/client/access/login-dialog.spec.jsx
1015
+ - spec/client/components/__snapshots__/asset.spec.jsx.snap
1016
+ - spec/client/components/__snapshots__/network-activity-overlay.spec.jsx.snap
1017
+ - spec/client/components/__snapshots__/query-builder.spec.jsx.snap
1018
+ - spec/client/components/asset.spec.jsx
1019
+ - spec/client/components/data-list.spec.jsx
1020
+ - spec/client/components/data-table.spec.jsx
1021
+ - spec/client/components/form.spec.jsx
1022
+ - spec/client/components/network-activity-overlay.spec.jsx
1023
+ - spec/client/components/query-builder.spec.jsx
1024
+ - spec/client/components/record-finder.spec.jsx
1025
+ - spec/client/extension/base.spec.js
1026
+ - spec/client/lib/util.spec.js
1027
+ - spec/client/models/asset.spec.js
1028
+ - spec/client/models/base.spec.js
1029
+ - spec/client/models/collection.spec.js
1030
+ - spec/client/models/query.spec.js
1031
+ - spec/client/models/sync.spec.js
1032
+ - spec/client/models/system-setting.spec.js
1033
+ - spec/client/screens/__snapshots__/system-settings.spec.jsx.snap
1034
+ - spec/client/screens/__snapshots__/tabs.spec.jsx.snap
1035
+ - spec/client/screens/definition.spec.js
1036
+ - spec/client/screens/group.spec.js
1037
+ - spec/client/screens/instance.spec.js
1038
+ - spec/client/screens/system-settings.spec.jsx
1039
+ - spec/client/screens/tabs.spec.jsx
1040
+ - spec/client/screens/user-management.spec.jsx
1041
+ - spec/client/setup.js
1042
+ - spec/client/test-logo.json
1043
+ - spec/client/test-models.js
1044
+ - spec/client/user.spec.js
1045
+ - spec/client/workspace/__snapshots__/menu.spec.jsx.snap
1046
+ - spec/client/workspace/menu.spec.jsx
1047
+ - spec/factories/user.rb
1048
+ - spec/fixtures/logo.png
1049
+ - spec/fixtures/system_settings.yml
1050
+ - spec/fixtures/test_printer.tex
1051
+ - spec/fixtures/user.yml
1052
+ - spec/hippo/components/grid/GridSpec.coffee
1053
+ - spec/hippo/components/grid/PopoverEditorSpec.coffee
1054
+ - spec/hippo/components/grid/RowEditorSpec.coffee
1055
+ - spec/hippo/components/select-field/SelectFieldSpec.coffee
1056
+ - spec/hippo/components/shared/NetworkActivityOverlaySpec.coffee
1057
+ - spec/hippo/helpers/.gitkeep
1058
+ - spec/hippo/helpers/hippo-helpers.coffee
1059
+ - spec/hippo/helpers/jasmine-matchers.js
1060
+ - spec/hippo/helpers/mock-ajax.js
1061
+ - spec/hippo/models/AssociationMapSpec.coffee
1062
+ - spec/hippo/models/AssociationProxySpec.coffee
1063
+ - spec/hippo/models/BaseSpec.coffee
1064
+ - spec/hippo/models/CollectionSpec.coffee
1065
+ - spec/hippo/models/EnumMapSpec.coffee
1066
+ - spec/hippo/models/PubSubSpec.coffee
1067
+ - spec/hippo/models/QuerySpec.coffee
1068
+ - spec/hippo/models/SyncSpec.coffee
1069
+ - spec/hippo/models/UserSpec.coffee
1070
+ - spec/hippo/react/mixins/DataSpec.coffee
1071
+ - spec/hippo/screens/DefinitionsSpec.coffee
1072
+ - spec/hippo/views/BaseSpec.coffee
1073
+ - spec/hippo/views/FormBindingsSpec.coffee
1074
+ - spec/server/api/controller_base_spec.rb
1075
+ - spec/server/assertions.rb
1076
+ - spec/server/asset_spec.rb
1077
+ - spec/server/command_spec.rb
1078
+ - spec/server/concerns/api_path_spec.rb
1079
+ - spec/server/concerns/association_extensions_spec.rb
1080
+ - spec/server/concerns/attr_accessor_with_default_spec.rb
1081
+ - spec/server/concerns/export_methods_spec.rb
1082
+ - spec/server/concerns/export_scope_spec.rb
1083
+ - spec/server/concerns/exported_limits_spec.rb
1084
+ - spec/server/concerns/pub_sub_spec.rb
1085
+ - spec/server/concerns/set_attribute_data_spec.rb
1086
+ - spec/server/concerns/sorting_expressions_spec.rb
1087
+ - spec/server/concerns/track_modifications_spec.rb
1088
+ - spec/server/configuration_spec.rb
1089
+ - spec/server/job_spec.rb
1090
+ - spec/server/mailer_spec.rb
1091
+ - spec/server/numbers_spec.rb
1092
+ - spec/server/print/form_spec.rb
1093
+ - spec/server/spec_helper.rb
1094
+ - spec/server/strings_spec.rb
1095
+ - spec/server/system_settings_spec.rb
1096
+ - tasks/migrations.rake
1097
+ - tasks/publish.rake
1098
+ - templates/.babelrc
1099
+ - templates/.gitignore
1100
+ - templates/Gemfile
1101
+ - templates/Guardfile
1102
+ - templates/Rakefile
1103
+ - templates/client/components/.gitkeep
1104
+ - templates/client/components/BaseComponent.coffee
1105
+ - templates/client/components/Component.cjsx
1106
+ - templates/client/components/template.html
1107
+ - templates/client/extension.js
1108
+ - templates/client/index.js
1109
+ - templates/client/models/base.js
1110
+ - templates/client/models/model.js
1111
+ - templates/client/screens/screen.jsx
1112
+ - templates/client/styles.scss
1113
+ - templates/config.ru
1114
+ - templates/config/database.yml
1115
+ - templates/config/initialize.rb
1116
+ - templates/config/jest.config.json
1117
+ - templates/config/jest/babel-transform.js
1118
+ - templates/config/routes.rb
1119
+ - templates/config/screen.rb
1120
+ - templates/config/screens.rb
1121
+ - templates/config/webpack.config.js
1122
+ - templates/db/create_table_migration.rb
1123
+ - templates/gitignore
1124
+ - templates/js/config-data.js
1125
+ - templates/js/jest.config.json
1126
+ - templates/js/root-view.html
1127
+ - templates/js/screen-definitions.js
1128
+ - templates/lib/namespace.rb
1129
+ - templates/lib/namespace/base_model.rb
1130
+ - templates/lib/namespace/extension.rb
1131
+ - templates/lib/namespace/model.rb
1132
+ - templates/lib/namespace/version.rb
1133
+ - templates/public/.gitkeep
1134
+ - templates/spec/client/components/ComponentSpec.coffee
1135
+ - templates/spec/client/models/model.spec.js
1136
+ - templates/spec/client/screen.spec.jsx
1137
+ - templates/spec/client/setup.js
1138
+ - templates/spec/fixtures/namespace/model.yml
1139
+ - templates/spec/server/model_spec.rb
1140
+ - templates/spec/server/spec_helper.rb
1141
+ - test.js
1142
+ - views/hippo_root_view.erb
1143
+ - views/index.html
1144
+ - yard_ext/all.rb
1145
+ - yard_ext/code_identifier_handler.rb
1146
+ - yard_ext/concern_meta_methods.rb
1147
+ - yard_ext/config_options.rb
1148
+ - yard_ext/exported_scope.rb
1149
+ - yard_ext/immutable_handler.rb
1150
+ - yard_ext/json_attr_accessor.rb
1151
+ - yard_ext/locked_fields_handler.rb
1152
+ - yard_ext/templates/default/layout/html/layout.erb
1153
+ - yard_ext/templates/default/method_details/html/github_link.erb
1154
+ - yard_ext/templates/default/method_details/setup.rb
1155
+ - yard_ext/validators.rb
1156
+ - yard_ext/visible_id_handler.rb
1157
+ - yarn.lock
1158
+ homepage: https://github.com/argosity/hippo
1159
+ licenses:
1160
+ - MIT
1161
+ metadata: {}
1162
+ post_install_message:
1163
+ rdoc_options: []
1164
+ require_paths:
1165
+ - lib
1166
+ required_ruby_version: !ruby/object:Gem::Requirement
1167
+ requirements:
1168
+ - - ">="
1169
+ - !ruby/object:Gem::Version
1170
+ version: '2.0'
1171
+ required_rubygems_version: !ruby/object:Gem::Requirement
1172
+ requirements:
1173
+ - - ">="
1174
+ - !ruby/object:Gem::Version
1175
+ version: '0'
1176
+ requirements: []
1177
+ rubyforge_project:
1178
+ rubygems_version: 2.6.10
1179
+ signing_key:
1180
+ specification_version: 4
1181
+ summary: Hippo is a framework for easily writing single page web applications
1182
+ test_files: []