pwice_grid 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (389) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +68 -0
  3. data/.circleci/run-build-locally.sh +7 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  5. data/.gitignore +22 -0
  6. data/.inch.yml +3 -0
  7. data/.rspec +3 -0
  8. data/.rubocop.yml +186 -0
  9. data/Appraisals +11 -0
  10. data/CHANGELOG.md +758 -0
  11. data/Gemfile +3 -0
  12. data/Gemfile.lock +298 -0
  13. data/MIT-LICENSE +20 -0
  14. data/README.md +1561 -0
  15. data/Rakefile +49 -0
  16. data/SAVED_QUERIES_HOWTO.md +113 -0
  17. data/app/views/kaminari/wice_grid/_gap.html.erb +1 -0
  18. data/app/views/kaminari/wice_grid/_next_page.html.erb +1 -0
  19. data/app/views/kaminari/wice_grid/_page.html.erb +1 -0
  20. data/app/views/kaminari/wice_grid/_paginator.html.erb +19 -0
  21. data/app/views/kaminari/wice_grid/_prev_page.html.erb +1 -0
  22. data/config/locales/cz.yml +40 -0
  23. data/config/locales/de.yml +42 -0
  24. data/config/locales/en.yml +42 -0
  25. data/config/locales/es.yml +42 -0
  26. data/config/locales/fr.yml +40 -0
  27. data/config/locales/is.yml +41 -0
  28. data/config/locales/it.yml +33 -0
  29. data/config/locales/ja.yml +42 -0
  30. data/config/locales/nl.yml +40 -0
  31. data/config/locales/pt-BR.yml +31 -0
  32. data/config/locales/pt.yml +40 -0
  33. data/config/locales/ru.yml +40 -0
  34. data/config/locales/sk.yml +40 -0
  35. data/config/locales/uk.yml +40 -0
  36. data/config/locales/zh.yml +40 -0
  37. data/gemfiles/rails_5.0.gemfile +7 -0
  38. data/gemfiles/rails_5.0.gemfile.lock +299 -0
  39. data/gemfiles/rails_5.1.gemfile +7 -0
  40. data/gemfiles/rails_5.1.gemfile.lock +299 -0
  41. data/gemfiles/rails_5.2.gemfile +7 -0
  42. data/gemfiles/rails_5.2.gemfile.lock +307 -0
  43. data/lib/generators/wice_grid/add_migration_for_serialized_queries_generator.rb +19 -0
  44. data/lib/generators/wice_grid/install_generator.rb +13 -0
  45. data/lib/generators/wice_grid/templates/create_wice_grid_serialized_queries.rb +13 -0
  46. data/lib/generators/wice_grid/templates/wice_grid_config.rb +191 -0
  47. data/lib/wice/active_record_column_wrapper.rb +122 -0
  48. data/lib/wice/columns.rb +282 -0
  49. data/lib/wice/columns/column_action.rb +51 -0
  50. data/lib/wice/columns/column_boolean.rb +39 -0
  51. data/lib/wice/columns/column_bootstrap_datepicker.rb +47 -0
  52. data/lib/wice/columns/column_custom_dropdown.rb +114 -0
  53. data/lib/wice/columns/column_float.rb +8 -0
  54. data/lib/wice/columns/column_html5_datepicker.rb +30 -0
  55. data/lib/wice/columns/column_integer.rb +87 -0
  56. data/lib/wice/columns/column_jquery_datepicker.rb +48 -0
  57. data/lib/wice/columns/column_processor_index.rb +22 -0
  58. data/lib/wice/columns/column_rails_date_helper.rb +40 -0
  59. data/lib/wice/columns/column_rails_datetime_helper.rb +40 -0
  60. data/lib/wice/columns/column_range.rb +73 -0
  61. data/lib/wice/columns/column_string.rb +91 -0
  62. data/lib/wice/columns/common_date_datetime_mixin.rb +19 -0
  63. data/lib/wice/columns/common_js_date_datetime_conditions_generator_mixin.rb +38 -0
  64. data/lib/wice/columns/common_js_date_datetime_mixin.rb +14 -0
  65. data/lib/wice/columns/common_rails_date_datetime_conditions_generator_mixin.rb +25 -0
  66. data/lib/wice/columns/common_standard_helper_date_datetime_mixin.rb +21 -0
  67. data/lib/wice/grid_output_buffer.rb +48 -0
  68. data/lib/wice/grid_renderer.rb +624 -0
  69. data/lib/wice/helpers/bs_calendar_helpers.rb +73 -0
  70. data/lib/wice/helpers/js_calendar_helpers.rb +82 -0
  71. data/lib/wice/helpers/wice_grid_misc_view_helpers.rb +74 -0
  72. data/lib/wice/helpers/wice_grid_serialized_queries_view_helpers.rb +94 -0
  73. data/lib/wice/helpers/wice_grid_view_helpers.rb +719 -0
  74. data/lib/wice/kaminari_monkey_patching.rb +12 -0
  75. data/lib/wice/table_column_matrix.rb +64 -0
  76. data/lib/wice/wice_grid_controller.rb +174 -0
  77. data/lib/wice/wice_grid_core_ext.rb +145 -0
  78. data/lib/wice/wice_grid_misc.rb +208 -0
  79. data/lib/wice/wice_grid_serialized_queries_controller.rb +86 -0
  80. data/lib/wice/wice_grid_serialized_query.rb +13 -0
  81. data/lib/wice/wice_grid_spreadsheet.rb +19 -0
  82. data/lib/wice_grid.rb +702 -0
  83. data/spec/acceptance_helper.rb +59 -0
  84. data/spec/features/action_column_request_spec.rb +280 -0
  85. data/spec/features/adding_rows_request_spec.rb +21 -0
  86. data/spec/features/all_records_request_spec.rb +18 -0
  87. data/spec/features/auto_reloads2_request_spec.rb +366 -0
  88. data/spec/features/auto_reloads3_request_spec.rb +130 -0
  89. data/spec/features/auto_reloads_request_spec.rb +364 -0
  90. data/spec/features/basics1_request_spec.rb +11 -0
  91. data/spec/features/basics2_request_spec.rb +10 -0
  92. data/spec/features/basics3_request_spec.rb +29 -0
  93. data/spec/features/basics4_request_spec.rb +19 -0
  94. data/spec/features/basics5_request_spec.rb +13 -0
  95. data/spec/features/basics6_request_spec.rb +22 -0
  96. data/spec/features/blockless_column_definition_spec.rb +27 -0
  97. data/spec/features/buttons_request_spec.rb +172 -0
  98. data/spec/features/csv_and_detached_filters_spec.rb +10 -0
  99. data/spec/features/csv_export_request_spec.rb +13 -0
  100. data/spec/features/custom_filter_params_request_spec.rb +29 -0
  101. data/spec/features/custom_filters1_request_spec.rb +136 -0
  102. data/spec/features/custom_filters2_request_spec.rb +31 -0
  103. data/spec/features/custom_filters3_request_spec.rb +34 -0
  104. data/spec/features/custom_filters4_request_spec.rb +13 -0
  105. data/spec/features/custom_ordering_on_calculated_request_spec.rb +30 -0
  106. data/spec/features/custom_ordering_request_spec.rb +36 -0
  107. data/spec/features/custom_ordering_with_arel_request_spec.rb +36 -0
  108. data/spec/features/custom_ordering_with_proc_request_spec.rb +44 -0
  109. data/spec/features/custom_ordering_with_ruby_request_spec.rb +30 -0
  110. data/spec/features/dates_request_spec.rb +56 -0
  111. data/spec/features/detached_filters_spec.rb +10 -0
  112. data/spec/features/detached_filters_two_grids_spec.rb +135 -0
  113. data/spec/features/disable_all_filters_spec.rb +22 -0
  114. data/spec/features/hiding_checkboxes_in_action_column_request_spec.rb +294 -0
  115. data/spec/features/integration_with_application_view_request_spec.rb +43 -0
  116. data/spec/features/integration_with_forms_request_spec.rb +141 -0
  117. data/spec/features/joining_tables_spec.rb +40 -0
  118. data/spec/features/localization_request_spec.rb +24 -0
  119. data/spec/features/many_grids_on_page_request_spec.rb +104 -0
  120. data/spec/features/negation_request_spec.rb +25 -0
  121. data/spec/features/no_records_request_spec.rb +26 -0
  122. data/spec/features/numeric_filters_request_spec.rb +10 -0
  123. data/spec/features/resultset_processings2_request_spec.rb +27 -0
  124. data/spec/features/resultset_processings_request_spec.rb +30 -0
  125. data/spec/features/saved_queries_request_spec.rb +120 -0
  126. data/spec/features/shared.rb +1005 -0
  127. data/spec/features/shared_detached_filters.rb +175 -0
  128. data/spec/features/styling_spec.rb +15 -0
  129. data/spec/features/two_associations_spec.rb +48 -0
  130. data/spec/features/upper_pagination_panel_request_spec.rb +23 -0
  131. data/spec/features/when_filtered_spec.rb +209 -0
  132. data/spec/fixtures/.gitkeep +0 -0
  133. data/spec/fixtures/companies.yml +21 -0
  134. data/spec/fixtures/priorities.yml +31 -0
  135. data/spec/fixtures/project_roles.yml +25 -0
  136. data/spec/fixtures/projects.yml +22 -0
  137. data/spec/fixtures/statuses.yml +55 -0
  138. data/spec/fixtures/tasks.yml +751 -0
  139. data/spec/fixtures/tasks_users.yml +2089 -0
  140. data/spec/fixtures/users.yml +61 -0
  141. data/spec/fixtures/versions.yml +78 -0
  142. data/spec/models/company_spec.rb +6 -0
  143. data/spec/models/priority_spec.rb +6 -0
  144. data/spec/models/project_spec.rb +11 -0
  145. data/spec/models/status_spec.rb +6 -0
  146. data/spec/models/task_spec.rb +12 -0
  147. data/spec/models/user_project_participation_spec.rb +7 -0
  148. data/spec/models/user_spec.rb +12 -0
  149. data/spec/models/version_spec.rb +5 -0
  150. data/spec/rails_helper.rb +15 -0
  151. data/spec/schema.rb +8 -0
  152. data/spec/spec_helper.rb +75 -0
  153. data/spec/support/active_record.rb +10 -0
  154. data/spec/support/test_app/Rakefile +3 -0
  155. data/spec/support/test_app/app/assets/javascripts/application.js +20 -0
  156. data/spec/support/test_app/app/assets/javascripts/common.js.coffee +6 -0
  157. data/spec/support/test_app/app/assets/javascripts/jquery.ui.datepicker.locales.js +56 -0
  158. data/spec/support/test_app/app/assets/stylesheets/adding_rows.scss +3 -0
  159. data/spec/support/test_app/app/assets/stylesheets/application.scss +46 -0
  160. data/spec/support/test_app/app/assets/stylesheets/csv_and_detached_filters.scss +3 -0
  161. data/spec/support/test_app/app/assets/stylesheets/many_grids_on_page.scss +3 -0
  162. data/spec/support/test_app/app/controllers/action_column_controller.rb +15 -0
  163. data/spec/support/test_app/app/controllers/adding_rows_controller.rb +14 -0
  164. data/spec/support/test_app/app/controllers/all_records_controller.rb +14 -0
  165. data/spec/support/test_app/app/controllers/application_controller.rb +99 -0
  166. data/spec/support/test_app/app/controllers/auto_reloads2_controller.rb +14 -0
  167. data/spec/support/test_app/app/controllers/auto_reloads3_controller.rb +20 -0
  168. data/spec/support/test_app/app/controllers/auto_reloads_controller.rb +14 -0
  169. data/spec/support/test_app/app/controllers/basics1_controller.rb +6 -0
  170. data/spec/support/test_app/app/controllers/basics2_controller.rb +6 -0
  171. data/spec/support/test_app/app/controllers/basics3_controller.rb +6 -0
  172. data/spec/support/test_app/app/controllers/basics4_controller.rb +6 -0
  173. data/spec/support/test_app/app/controllers/basics5_controller.rb +6 -0
  174. data/spec/support/test_app/app/controllers/basics6_controller.rb +11 -0
  175. data/spec/support/test_app/app/controllers/blockless_column_definition_controller.rb +6 -0
  176. data/spec/support/test_app/app/controllers/buttons_controller.rb +6 -0
  177. data/spec/support/test_app/app/controllers/csv_and_detached_filters_controller.rb +13 -0
  178. data/spec/support/test_app/app/controllers/csv_export_controller.rb +28 -0
  179. data/spec/support/test_app/app/controllers/custom_filter_params_controller.rb +6 -0
  180. data/spec/support/test_app/app/controllers/custom_filters1_controller.rb +9 -0
  181. data/spec/support/test_app/app/controllers/custom_filters2_controller.rb +14 -0
  182. data/spec/support/test_app/app/controllers/custom_filters3_controller.rb +12 -0
  183. data/spec/support/test_app/app/controllers/custom_filters4_controller.rb +12 -0
  184. data/spec/support/test_app/app/controllers/custom_ordering_controller.rb +18 -0
  185. data/spec/support/test_app/app/controllers/custom_ordering_on_calculated_controller.rb +6 -0
  186. data/spec/support/test_app/app/controllers/custom_ordering_with_arel_controller.rb +18 -0
  187. data/spec/support/test_app/app/controllers/custom_ordering_with_proc_controller.rb +11 -0
  188. data/spec/support/test_app/app/controllers/custom_ordering_with_ruby_controller.rb +6 -0
  189. data/spec/support/test_app/app/controllers/dates_controller.rb +8 -0
  190. data/spec/support/test_app/app/controllers/detached_filters_controller.rb +6 -0
  191. data/spec/support/test_app/app/controllers/detached_filters_two_grids_controller.rb +7 -0
  192. data/spec/support/test_app/app/controllers/disable_all_filters_controller.rb +6 -0
  193. data/spec/support/test_app/app/controllers/hiding_checkboxes_in_action_column_controller.rb +13 -0
  194. data/spec/support/test_app/app/controllers/home_controller.rb +3 -0
  195. data/spec/support/test_app/app/controllers/integration_with_application_view_controller.rb +16 -0
  196. data/spec/support/test_app/app/controllers/integration_with_forms_controller.rb +11 -0
  197. data/spec/support/test_app/app/controllers/joining_tables_controller.rb +11 -0
  198. data/spec/support/test_app/app/controllers/localization_controller.rb +26 -0
  199. data/spec/support/test_app/app/controllers/many_grids_on_page_controller.rb +7 -0
  200. data/spec/support/test_app/app/controllers/negation_controller.rb +14 -0
  201. data/spec/support/test_app/app/controllers/no_records_controller.rb +8 -0
  202. data/spec/support/test_app/app/controllers/null_values_controller.rb +10 -0
  203. data/spec/support/test_app/app/controllers/numeric_filters_controller.rb +6 -0
  204. data/spec/support/test_app/app/controllers/queries_controller.rb +4 -0
  205. data/spec/support/test_app/app/controllers/resultset_processings2_controller.rb +29 -0
  206. data/spec/support/test_app/app/controllers/resultset_processings_controller.rb +30 -0
  207. data/spec/support/test_app/app/controllers/saved_queries_controller.rb +14 -0
  208. data/spec/support/test_app/app/controllers/styling_controller.rb +7 -0
  209. data/spec/support/test_app/app/controllers/tasks_controller.rb +14 -0
  210. data/spec/support/test_app/app/controllers/two_associations_controller.rb +6 -0
  211. data/spec/support/test_app/app/controllers/upper_pagination_panel_controller.rb +6 -0
  212. data/spec/support/test_app/app/controllers/when_filtered_controller.rb +6 -0
  213. data/spec/support/test_app/app/helpers/application_helper.rb +82 -0
  214. data/spec/support/test_app/app/mailers/.gitkeep +0 -0
  215. data/spec/support/test_app/app/models/.gitkeep +0 -0
  216. data/spec/support/test_app/app/models/company.rb +5 -0
  217. data/spec/support/test_app/app/models/populate.rb +84 -0
  218. data/spec/support/test_app/app/models/priority.rb +10 -0
  219. data/spec/support/test_app/app/models/project.rb +14 -0
  220. data/spec/support/test_app/app/models/project_role.rb +3 -0
  221. data/spec/support/test_app/app/models/status.rb +10 -0
  222. data/spec/support/test_app/app/models/task.rb +11 -0
  223. data/spec/support/test_app/app/models/to_dropdown_mixin.rb +16 -0
  224. data/spec/support/test_app/app/models/user.rb +8 -0
  225. data/spec/support/test_app/app/models/user_project_participation.rb +6 -0
  226. data/spec/support/test_app/app/models/version.rb +6 -0
  227. data/spec/support/test_app/app/views/action_column/_grid.html.erb +35 -0
  228. data/spec/support/test_app/app/views/action_column/index.html.haml +45 -0
  229. data/spec/support/test_app/app/views/adding_rows/_grid.html.erb +58 -0
  230. data/spec/support/test_app/app/views/adding_rows/index.html.haml +37 -0
  231. data/spec/support/test_app/app/views/all_records/_grid.html.erb +30 -0
  232. data/spec/support/test_app/app/views/all_records/index.html.haml +12 -0
  233. data/spec/support/test_app/app/views/auto_reloads/_grid.html.erb +32 -0
  234. data/spec/support/test_app/app/views/auto_reloads/index.html.haml +15 -0
  235. data/spec/support/test_app/app/views/auto_reloads2/_grid.html.erb +32 -0
  236. data/spec/support/test_app/app/views/auto_reloads2/index.html.haml +65 -0
  237. data/spec/support/test_app/app/views/auto_reloads3/_grid.html.erb +25 -0
  238. data/spec/support/test_app/app/views/auto_reloads3/index.html.haml +78 -0
  239. data/spec/support/test_app/app/views/basics1/_grid.html.erb +26 -0
  240. data/spec/support/test_app/app/views/basics1/index.html.haml +13 -0
  241. data/spec/support/test_app/app/views/basics2/_grid.html.erb +27 -0
  242. data/spec/support/test_app/app/views/basics2/index.html.haml +12 -0
  243. data/spec/support/test_app/app/views/basics3/_grid.html.erb +28 -0
  244. data/spec/support/test_app/app/views/basics3/index.html.haml +13 -0
  245. data/spec/support/test_app/app/views/basics4/_grid.html.erb +21 -0
  246. data/spec/support/test_app/app/views/basics4/index.html.haml +12 -0
  247. data/spec/support/test_app/app/views/basics5/_grid.html.erb +19 -0
  248. data/spec/support/test_app/app/views/basics5/index.html.haml +12 -0
  249. data/spec/support/test_app/app/views/basics6/_grid.html.erb +19 -0
  250. data/spec/support/test_app/app/views/basics6/index.html.haml +23 -0
  251. data/spec/support/test_app/app/views/blockless_column_definition/_grid.html.erb +19 -0
  252. data/spec/support/test_app/app/views/blockless_column_definition/index.html.haml +15 -0
  253. data/spec/support/test_app/app/views/buttons/_grid.html.erb +20 -0
  254. data/spec/support/test_app/app/views/buttons/index.html.haml +30 -0
  255. data/spec/support/test_app/app/views/csv_and_detached_filters/_grid.html.erb +23 -0
  256. data/spec/support/test_app/app/views/csv_and_detached_filters/index.html.haml +58 -0
  257. data/spec/support/test_app/app/views/csv_export/_projects_grid.html.erb +17 -0
  258. data/spec/support/test_app/app/views/csv_export/_tasks_grid.html.erb +43 -0
  259. data/spec/support/test_app/app/views/csv_export/index.html.haml +90 -0
  260. data/spec/support/test_app/app/views/custom_filter_params/_grid.html.erb +12 -0
  261. data/spec/support/test_app/app/views/custom_filter_params/index.html.haml +12 -0
  262. data/spec/support/test_app/app/views/custom_filters1/_g1.html.erb +8 -0
  263. data/spec/support/test_app/app/views/custom_filters1/_g2.html.erb +9 -0
  264. data/spec/support/test_app/app/views/custom_filters1/_g3.html.erb +9 -0
  265. data/spec/support/test_app/app/views/custom_filters1/_g4.html.erb +8 -0
  266. data/spec/support/test_app/app/views/custom_filters1/index.html.haml +30 -0
  267. data/spec/support/test_app/app/views/custom_filters2/_grid.html.erb +30 -0
  268. data/spec/support/test_app/app/views/custom_filters2/index.html.haml +41 -0
  269. data/spec/support/test_app/app/views/custom_filters3/_grid.html.erb +18 -0
  270. data/spec/support/test_app/app/views/custom_filters3/index.html.haml +16 -0
  271. data/spec/support/test_app/app/views/custom_filters4/_grid.html.erb +20 -0
  272. data/spec/support/test_app/app/views/custom_filters4/index.html.haml +12 -0
  273. data/spec/support/test_app/app/views/custom_ordering/_grid.html.erb +10 -0
  274. data/spec/support/test_app/app/views/custom_ordering/index.html.haml +24 -0
  275. data/spec/support/test_app/app/views/custom_ordering_on_calculated/_grid.html.erb +14 -0
  276. data/spec/support/test_app/app/views/custom_ordering_on_calculated/index.html.haml +23 -0
  277. data/spec/support/test_app/app/views/custom_ordering_with_arel/_grid.html.erb +10 -0
  278. data/spec/support/test_app/app/views/custom_ordering_with_arel/index.html.haml +24 -0
  279. data/spec/support/test_app/app/views/custom_ordering_with_proc/_grid.html.erb +10 -0
  280. data/spec/support/test_app/app/views/custom_ordering_with_proc/index.html.haml +21 -0
  281. data/spec/support/test_app/app/views/custom_ordering_with_ruby/_grid.html.erb +10 -0
  282. data/spec/support/test_app/app/views/custom_ordering_with_ruby/index.html.haml +23 -0
  283. data/spec/support/test_app/app/views/dates/_grid.html.erb +25 -0
  284. data/spec/support/test_app/app/views/dates/index.html.haml +52 -0
  285. data/spec/support/test_app/app/views/detached_filters/_grid.html.erb +23 -0
  286. data/spec/support/test_app/app/views/detached_filters/index.html.haml +79 -0
  287. data/spec/support/test_app/app/views/detached_filters_two_grids/_grid.html.erb +23 -0
  288. data/spec/support/test_app/app/views/detached_filters_two_grids/index.html.haml +85 -0
  289. data/spec/support/test_app/app/views/disable_all_filters/_grid.html.erb +21 -0
  290. data/spec/support/test_app/app/views/disable_all_filters/index.html.haml +14 -0
  291. data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/_grid.html.erb +34 -0
  292. data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/index.html.haml +32 -0
  293. data/spec/support/test_app/app/views/integration_with_application_view/_grid.html.erb +27 -0
  294. data/spec/support/test_app/app/views/integration_with_application_view/index.html.haml +33 -0
  295. data/spec/support/test_app/app/views/integration_with_forms/_grid.html.erb +23 -0
  296. data/spec/support/test_app/app/views/integration_with_forms/index.html.haml +18 -0
  297. data/spec/support/test_app/app/views/joining_tables/_grid.html.erb +23 -0
  298. data/spec/support/test_app/app/views/joining_tables/index.html.haml +26 -0
  299. data/spec/support/test_app/app/views/layouts/application.html.haml +61 -0
  300. data/spec/support/test_app/app/views/localization/_grid.html.erb +36 -0
  301. data/spec/support/test_app/app/views/localization/index.html.haml +20 -0
  302. data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid1.html.erb +12 -0
  303. data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid2.html.erb +12 -0
  304. data/spec/support/test_app/app/views/many_grids_on_page/index.html.haml +26 -0
  305. data/spec/support/test_app/app/views/negation/_grid.html.erb +30 -0
  306. data/spec/support/test_app/app/views/negation/index.html.haml +15 -0
  307. data/spec/support/test_app/app/views/no_records/_empty_grid.html.haml +1 -0
  308. data/spec/support/test_app/app/views/no_records/_grid1.html.erb +11 -0
  309. data/spec/support/test_app/app/views/no_records/_grid2.html.erb +9 -0
  310. data/spec/support/test_app/app/views/no_records/_grid3.html.erb +9 -0
  311. data/spec/support/test_app/app/views/no_records/index.html.haml +24 -0
  312. data/spec/support/test_app/app/views/null_values/_grid.html.erb +17 -0
  313. data/spec/support/test_app/app/views/null_values/index.html.haml +21 -0
  314. data/spec/support/test_app/app/views/numeric_filters/_grid.html.erb +19 -0
  315. data/spec/support/test_app/app/views/numeric_filters/index.html.haml +12 -0
  316. data/spec/support/test_app/app/views/resultset_processings/_grid.html.erb +27 -0
  317. data/spec/support/test_app/app/views/resultset_processings/index.html.haml +50 -0
  318. data/spec/support/test_app/app/views/resultset_processings2/_grid.html.erb +27 -0
  319. data/spec/support/test_app/app/views/resultset_processings2/index.html.haml +48 -0
  320. data/spec/support/test_app/app/views/saved_queries/_grid.html.erb +30 -0
  321. data/spec/support/test_app/app/views/saved_queries/index.html.haml +15 -0
  322. data/spec/support/test_app/app/views/styling/_grid1.html.erb +12 -0
  323. data/spec/support/test_app/app/views/styling/_grid2.html.erb +31 -0
  324. data/spec/support/test_app/app/views/styling/index.html.haml +65 -0
  325. data/spec/support/test_app/app/views/tasks/_grid.html.erb +19 -0
  326. data/spec/support/test_app/app/views/tasks/index.html.haml +1 -0
  327. data/spec/support/test_app/app/views/two_associations/_grid.html.erb +13 -0
  328. data/spec/support/test_app/app/views/two_associations/index.html.haml +13 -0
  329. data/spec/support/test_app/app/views/upper_pagination_panel/_grid.html.erb +27 -0
  330. data/spec/support/test_app/app/views/upper_pagination_panel/index.html.haml +14 -0
  331. data/spec/support/test_app/app/views/when_filtered/_grid.html.erb +19 -0
  332. data/spec/support/test_app/app/views/when_filtered/index.html.haml +15 -0
  333. data/spec/support/test_app/bin/rails +4 -0
  334. data/spec/support/test_app/bin/rake +4 -0
  335. data/spec/support/test_app/config.ru +5 -0
  336. data/spec/support/test_app/config/application.rb +70 -0
  337. data/spec/support/test_app/config/boot.rb +7 -0
  338. data/spec/support/test_app/config/database.travis.yml +27 -0
  339. data/spec/support/test_app/config/database.yml +16 -0
  340. data/spec/support/test_app/config/database.yml.mysql +19 -0
  341. data/spec/support/test_app/config/database.yml.postgresql +18 -0
  342. data/spec/support/test_app/config/environment.rb +6 -0
  343. data/spec/support/test_app/config/environments/development.rb +34 -0
  344. data/spec/support/test_app/config/environments/production.rb +66 -0
  345. data/spec/support/test_app/config/environments/test.rb +34 -0
  346. data/spec/support/test_app/config/initializers/backtrace_silencers.rb +8 -0
  347. data/spec/support/test_app/config/initializers/inflections.rb +16 -0
  348. data/spec/support/test_app/config/initializers/mime_types.rb +6 -0
  349. data/spec/support/test_app/config/initializers/secret_token.rb +12 -0
  350. data/spec/support/test_app/config/initializers/session_store.rb +9 -0
  351. data/spec/support/test_app/config/initializers/wice_grid_config.rb +163 -0
  352. data/spec/support/test_app/config/initializers/wrap_parameters.rb +15 -0
  353. data/spec/support/test_app/config/locales/en.yml +5 -0
  354. data/spec/support/test_app/config/locales/wice_grid.yml +550 -0
  355. data/spec/support/test_app/config/puma.rb +15 -0
  356. data/spec/support/test_app/config/routes.rb +125 -0
  357. data/spec/support/test_app/db/migrate/20120224193505_create_tasks.rb +27 -0
  358. data/spec/support/test_app/db/migrate/20120224193517_create_users.rb +12 -0
  359. data/spec/support/test_app/db/migrate/20120224193522_create_projects.rb +14 -0
  360. data/spec/support/test_app/db/migrate/20120224193529_create_priorities.rb +13 -0
  361. data/spec/support/test_app/db/migrate/20120224193537_create_statuses.rb +13 -0
  362. data/spec/support/test_app/db/migrate/20120224193543_create_versions.rb +15 -0
  363. data/spec/support/test_app/db/migrate/20120224193550_create_project_roles.rb +12 -0
  364. data/spec/support/test_app/db/migrate/20120224193610_create_companies.rb +12 -0
  365. data/spec/support/test_app/db/migrate/20120224195351_create_user_project_participations.rb +16 -0
  366. data/spec/support/test_app/db/migrate/20120224195521_add_tasks_users.rb +11 -0
  367. data/spec/support/test_app/db/migrate/20120610091944_create_wice_grid_serialized_queries.rb +14 -0
  368. data/spec/support/test_app/db/schema.rb +139 -0
  369. data/spec/support/test_app/db/seeds.rb +10 -0
  370. data/spec/support/test_app/lib/ar_fixtures.rb +100 -0
  371. data/spec/support/test_app/lib/assets/.gitkeep +0 -0
  372. data/spec/support/test_app/lib/tasks/.gitkeep +0 -0
  373. data/spec/support/test_app/lib/tasks/ar_fixtures.rake +45 -0
  374. data/spec/support/test_app/public/404.html +26 -0
  375. data/spec/support/test_app/public/422.html +26 -0
  376. data/spec/support/test_app/public/500.html +25 -0
  377. data/spec/support/test_app/public/favicon.ico +0 -0
  378. data/spec/support/test_app/public/robots.txt +5 -0
  379. data/spec/wice/grid_output_buffer_spec.rb +39 -0
  380. data/spec/wice/table_column_matrix_spec.rb +36 -0
  381. data/spec/wice/wice_grid_misc_spec.rb +157 -0
  382. data/spec/wice/wice_grid_spreadsheet_spec.rb +12 -0
  383. data/vendor/assets/javascripts/wice_grid.js +3 -0
  384. data/vendor/assets/javascripts/wice_grid_init.js.coffee +351 -0
  385. data/vendor/assets/javascripts/wice_grid_processor.js.coffee +133 -0
  386. data/vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee +104 -0
  387. data/vendor/assets/stylesheets/wice_grid.scss +81 -0
  388. data/wice_grid.gemspec +54 -0
  389. metadata +861 -0
@@ -0,0 +1,33 @@
1
+ it:
2
+ wice_grid:
3
+ show_filter_tooltip: Mostra filtri
4
+ hide_filter_tooltip: Nascondi filtri
5
+ csv_export_tooltip: Esporta in CSV
6
+ filter_tooltip: Filtri
7
+ reset_filter_tooltip: Cancella
8
+ boolean_filter_true_label: "si"
9
+ boolean_filter_false_label: "no"
10
+ previous_label: «
11
+ next_label: »
12
+ date_selector_tooltip_from: Da
13
+ date_selector_tooltip_to: A
14
+ negation_checkbox_title: Escludi
15
+ show_all_records_label: Tutti i risultati
16
+ show_all_records_tooltip: Mostra tutti i risultati
17
+ all_queries_warning: Sei sicuro di voler mostrare tutti i risultati?
18
+ switch_back_to_paginated_mode_label: torna alla vista paginata
19
+ switch_back_to_paginated_mode_tooltip: Per tornare alla paginazione
20
+ date_string_tooltip: Clicca per cancellare
21
+ saved_query_panel_title: Ricerche salvate
22
+ save_query_button_label: Salva il valore dei filtri
23
+ saved_query_deletion_confirmation: Sei sicuro?
24
+ saved_query_deletion_link_title: Cancella la ricerca
25
+ saved_query_link_title: Carica ricerca
26
+ validates_uniqueness_error: Una ricerca con questo nome già esiste
27
+ validates_presence_error: Per favore inserisci il nome per questa ricerca personalizzata
28
+ query_deleted_message: Ricerca cancellata
29
+ query_saved_message: Ricerca salvata
30
+ select_all: Seleziona tutti
31
+ deselect_all: Deseleziona tutti
32
+ expand: Espandi
33
+ collapse: Chiudi
@@ -0,0 +1,42 @@
1
+ ja:
2
+ wice_grid:
3
+ show_filter_tooltip: フィルタ表示
4
+ hide_filter_tooltip: フィルタ非表示
5
+ csv_export_tooltip: CSVエクスポート
6
+ filter_tooltip: フィルタ
7
+ reset_filter_tooltip: リセット
8
+ boolean_filter_true_label: "yes"
9
+ boolean_filter_false_label: "no"
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: From
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: To
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: 除外する
18
+ # link to switch to show all records
19
+ show_all_records_label: すべて表示
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: 前レコード表示
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: 全てのレコードを表示しますか?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: 戻る
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: 戻る
28
+ # Title of the date string.
29
+ date_string_tooltip: 削除
30
+ saved_query_panel_title: クエリ保存
31
+ save_query_button_label: フィルタ保存
32
+ saved_query_deletion_confirmation: 本当によろしいですか?
33
+ saved_query_deletion_link_title: クエリ削除
34
+ saved_query_link_title: クエリのロード
35
+ validates_uniqueness_error: 同じ名前がすでに存在します
36
+ validates_presence_error: クエリ名を記入して下さい
37
+ query_deleted_message: クエリの削除が完了しました
38
+ query_saved_message: クエリを保存しました
39
+ select_all: 全てを選択
40
+ deselect_all: 選択を解除
41
+ expand: 開く
42
+ collapse: 閉じる
@@ -0,0 +1,40 @@
1
+ nl:
2
+ wice_grid:
3
+ show_filter_tooltip: Filter tonen
4
+ hide_filter_tooltip: Filter verbergen
5
+ csv_export_tooltip: Als CSV exporteren
6
+ filter_tooltip: Filter
7
+ reset_filter_tooltip: Terugstellen
8
+ boolean_filter_true_label: ja
9
+ boolean_filter_false_label: neen
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: Vanaf
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: Tot
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: Uitsluiten
18
+ # link to switch to show all records
19
+ show_all_records_label: Alle rijen tonen
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: Alle rijen tonen
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: Bent u zeker dat u alle rijen wilt tonen?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: Terug naar pagina's
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: Terug naar pagina's
28
+ # Title of the date string.
29
+ date_string_tooltip: Klik om te verwijderen
30
+ saved_query_panel_title: Opgeslagen query's
31
+ save_query_button_label: Query opslaan
32
+ saved_query_deletion_confirmation: Bent u zeker?
33
+ saved_query_deletion_link_title: Query verwijderen
34
+ saved_query_link_title: Query laden
35
+ validates_uniqueness_error: Deze query bestaat reeds
36
+ validates_presence_error: Gelieve de naam van de query in te vullen
37
+ query_deleted_message: Opgeslagen query verwijderd.
38
+ query_saved_message: Query opgeslagen
39
+ select_all: Selecteer alle rijen
40
+ deselect_all: Deselecteer alle rijen
@@ -0,0 +1,31 @@
1
+ pt-BR:
2
+ wice_grid:
3
+ show_filter_tooltip: Mostrar o filtro
4
+ hide_filter_tooltip: Esconder o filtro
5
+ csv_export_tooltip: Exportar em CSV
6
+ filter_tooltip: Filtrar
7
+ reset_filter_tooltip: Reinicializar
8
+ boolean_filter_true_label: sim
9
+ boolean_filter_false_label: não
10
+ previous_label: «
11
+ next_label: »
12
+ date_selector_tooltip_from: De
13
+ date_selector_tooltip_to: a
14
+ negation_checkbox_title: Excluir
15
+ show_all_records_label: Ver todos
16
+ show_all_records_tooltip: Ver todos os registos
17
+ all_queries_warning: Tem certeza que gostaria de visualizar todos os registos?
18
+ switch_back_to_paginated_mode_label: Voltar à lista paginada
19
+ switch_back_to_paginated_mode_tooltip: Voltar à lista por página
20
+ date_string_tooltip: Clique para apagar
21
+ saved_query_panel_title: Filtros gravados
22
+ save_query_button_label: Gravar o estado dos filtros
23
+ saved_query_deletion_confirmation: Tem certeza?
24
+ saved_query_deletion_link_title: Apagar o filtro
25
+ saved_query_link_title: Carregar o filtro
26
+ validates_uniqueness_error: Já existe um filtro com o mesmo nome
27
+ validates_presence_error: Indique o nome do filtro que deseja gravar
28
+ query_deleted_message: O filtro foi apagado.
29
+ query_saved_message: O filtro foi gravado.
30
+ select_all: Selecionar todos
31
+ deselect_all: Remover seleção
@@ -0,0 +1,40 @@
1
+ pt:
2
+ wice_grid:
3
+ show_filter_tooltip: Mostrar o filtro
4
+ hide_filter_tooltip: Esconder o filtro
5
+ csv_export_tooltip: Exportar em CSV
6
+ filter_tooltip: Filtrar
7
+ reset_filter_tooltip: Reinicializar
8
+ boolean_filter_true_label: sim
9
+ boolean_filter_false_label: não
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: De
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: a
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: Excluir
18
+ # link to switch to show all records
19
+ show_all_records_label: Ver todos
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: Ver todos os registos
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: Tem a certeza de querer visualizar todos os registos?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: Retorno à vista paginada
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: Retorno à vista por página
28
+ # Title of the date string.
29
+ date_string_tooltip: Cliquar para apagar
30
+ saved_query_panel_title: Queries gravadas
31
+ save_query_button_label: Gravar o estado dos filtros
32
+ saved_query_deletion_confirmation: Tem a certeza?
33
+ saved_query_deletion_link_title: Apagar a query
34
+ saved_query_link_title: Caregar a query
35
+ validates_uniqueness_error: Já existe uma query com o mesmo nome
36
+ validates_presence_error: Queira indicar o nome da query que deseja gravar
37
+ query_deleted_message: A query foi apagada.
38
+ query_saved_message: A query foi gravada.
39
+ select_all: Selecionar todos
40
+ deselect_all: Remover seleção
@@ -0,0 +1,40 @@
1
+ ru:
2
+ wice_grid:
3
+ show_filter_tooltip: Показать фильтр
4
+ hide_filter_tooltip: Спрятать фильтр
5
+ csv_export_tooltip: Экспорт в CSV
6
+ filter_tooltip: Фильтровать
7
+ reset_filter_tooltip: Сброс
8
+ boolean_filter_true_label: да
9
+ boolean_filter_false_label: нет
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: С
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: До
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: Исключая строки
18
+ # link to switch to show all records
19
+ show_all_records_label: показать все
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: Показать все записи
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: Вы уверены в том, что хотите отобразить все записи?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: Назад к постраничному выводу
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: Назад к постраничному выводу
28
+ # Title of the date string.
29
+ date_string_tooltip: Кликните, чтобы удалить дату
30
+ saved_query_panel_title: Сохранённые фильтры
31
+ save_query_button_label: Сохранить фильтр
32
+ saved_query_deletion_confirmation: Вы уверены?
33
+ saved_query_deletion_link_title: Удалить сохранённый фильтр
34
+ saved_query_link_title: Загрузить сохранённый фильтр
35
+ validates_uniqueness_error: Сохранённый фильтр с таким именем уже существует
36
+ validates_presence_error: Пожалуйста введите имя сохраняемого фильтра
37
+ query_deleted_message: Сохранённый фильтр удалён.
38
+ query_saved_message: Сохранённый фильтр сохранён.
39
+ select_all: Отметить все
40
+ deselect_all: Убрать выделение
@@ -0,0 +1,40 @@
1
+ sk:
2
+ wice_grid:
3
+ show_filter_tooltip: Zobraziť filter
4
+ hide_filter_tooltip: Skryť filter
5
+ csv_export_tooltip: Exportovať do CSV
6
+ filter_tooltip: Filter
7
+ reset_filter_tooltip: Zrušiť filtre
8
+ boolean_filter_true_label: "áno"
9
+ boolean_filter_false_label: "nie"
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: Dátum od
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: Dátum do
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: Inverzný výber
18
+ # link to switch to show all records
19
+ show_all_records_label: Zobraziť všetko
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: Zobrazí všetky záznamy v databáze
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: Určite chceš zobraziť všetky záznamy v databáze?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: späť na stránkové zobrazenie
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: Prepnúť do stránkového zobrazenia
28
+ # Title of the date string.
29
+ date_string_tooltip: Kliknutím zmažeš
30
+ saved_query_panel_title: Uložené filtre/výsledky
31
+ save_query_button_label: Uložiť stav filtrov
32
+ saved_query_deletion_confirmation: Si si istý?
33
+ saved_query_deletion_link_title: Vymazať uložený filter
34
+ saved_query_link_title: Nahrať uložený filter
35
+ validates_uniqueness_error: Filter s uvedeným názvom už existuje.
36
+ validates_presence_error: Prosím zadaj názov uloženého filtra.
37
+ query_deleted_message: Uložený filter bol vymazaný.
38
+ query_saved_message: Filter bol uložený.
39
+ select_all: Vyber všetko
40
+ deselect_all: Zrušiť výber
@@ -0,0 +1,40 @@
1
+ uk:
2
+ wice_grid:
3
+ show_filter_tooltip: "Показати фільтр"
4
+ hide_filter_tooltip: "Сховати фільтр"
5
+ csv_export_tooltip: "Експорт в CSV"
6
+ filter_tooltip: "Фільтрувати"
7
+ reset_filter_tooltip: "Скинути фільтр"
8
+ boolean_filter_true_label: "так"
9
+ boolean_filter_false_label: "ні"
10
+ previous_label: "«"
11
+ next_label: "»"
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: "Від"
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: "До"
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: "За винятком"
18
+ # link to switch to show all records
19
+ show_all_records_label: "показати всі"
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: "Показати всі записи"
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: "Ви впевнені в тому, що хочете відобразити всі записи?"
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: "Назад до посторінкового виводу"
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: "Назад до посторінкового виводу"
28
+ # Title of the date string.
29
+ date_string_tooltip: "Натисніть, щоб видалити дату"
30
+ saved_query_panel_title: "Збережені фільтри"
31
+ save_query_button_label: "Зберегти фільтр"
32
+ saved_query_deletion_confirmation: "Ви впевнені?"
33
+ saved_query_deletion_link_title: "Видалити збережуваний фільтр"
34
+ saved_query_link_title: "Завантажити збережуваний фільтр"
35
+ validates_uniqueness_error: "Збережуваний фільтр з такою назвою вже існує"
36
+ validates_presence_error: "Будь ласка, введіть назву Збережуваного фільтра"
37
+ query_deleted_message: "Збережуваний фільтр видалено."
38
+ query_saved_message: "Збережуваний фільтр збережено."
39
+ select_all: "Виділити все"
40
+ deselect_all: "Забрати виділення"
@@ -0,0 +1,40 @@
1
+ zh:
2
+ wice_grid:
3
+ show_filter_tooltip: 显示过滤
4
+ hide_filter_tooltip: 隐藏过滤
5
+ csv_export_tooltip: 输出CSV档
6
+ filter_tooltip: 过滤
7
+ reset_filter_tooltip: 清除过滤
8
+ boolean_filter_true_label: "是"
9
+ boolean_filter_false_label: "否"
10
+ previous_label: «
11
+ next_label: »
12
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
13
+ date_selector_tooltip_from: 从
14
+ # Title of the icon clicking on which will show the calendar to set the TO date.
15
+ date_selector_tooltip_to: 至
16
+ # The title of the checkox to turn on negation
17
+ negation_checkbox_title: 排除
18
+ # link to switch to show all records
19
+ show_all_records_label: 显示全部
20
+ # tooltip for the link to switch to show all records
21
+ show_all_records_tooltip: 显示全部记录
22
+ # Warning message shown when the user wants to switch to all-records mode
23
+ all_queries_warning: 确定要显示全部记录?
24
+ # link to paginated view
25
+ switch_back_to_paginated_mode_label: 回到分页显示
26
+ # tooltip for the link to paginated view
27
+ switch_back_to_paginated_mode_tooltip: 切换到分页显示
28
+ # Title of the date string.
29
+ date_string_tooltip: 按下以清除
30
+ saved_query_panel_title: 查询存储
31
+ save_query_button_label: 储存查询状态
32
+ saved_query_deletion_confirmation: 确定删除?
33
+ saved_query_deletion_link_title: 删除查询
34
+ saved_query_link_title: 读取查询
35
+ validates_uniqueness_error: 已存在相同名称的查询
36
+ validates_presence_error: 请为此查询命名
37
+ query_deleted_message: 查询已删除
38
+ query_saved_message: 查询已储存
39
+ select_all: 全选
40
+ deselect_all: 全清
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 5.0.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,299 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ wice_grid (4.1.0)
5
+ coffee-rails (> 3.2)
6
+ kaminari (~> 1.1)
7
+ rails (>= 5.0, < 7)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.0.7)
13
+ actionpack (= 5.0.7)
14
+ nio4r (>= 1.2, < 3.0)
15
+ websocket-driver (~> 0.6.1)
16
+ actionmailer (5.0.7)
17
+ actionpack (= 5.0.7)
18
+ actionview (= 5.0.7)
19
+ activejob (= 5.0.7)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.0.7)
23
+ actionview (= 5.0.7)
24
+ activesupport (= 5.0.7)
25
+ rack (~> 2.0)
26
+ rack-test (~> 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.0.7)
30
+ activesupport (= 5.0.7)
31
+ builder (~> 3.1)
32
+ erubis (~> 2.7.0)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.0.7)
36
+ activesupport (= 5.0.7)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.0.7)
39
+ activesupport (= 5.0.7)
40
+ activerecord (5.0.7)
41
+ activemodel (= 5.0.7)
42
+ activesupport (= 5.0.7)
43
+ arel (~> 7.0)
44
+ activesupport (5.0.7)
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ i18n (>= 0.7, < 2)
47
+ minitest (~> 5.1)
48
+ tzinfo (~> 1.1)
49
+ addressable (2.5.2)
50
+ public_suffix (>= 2.0.2, < 4.0)
51
+ appraisal (2.2.0)
52
+ bundler
53
+ rake
54
+ thor (>= 0.14.0)
55
+ arel (7.1.4)
56
+ bootstrap-sass (3.1.1.1)
57
+ sass (~> 3.2)
58
+ builder (3.2.3)
59
+ byebug (10.0.2)
60
+ capybara (3.13.2)
61
+ addressable
62
+ mini_mime (>= 0.1.3)
63
+ nokogiri (~> 1.8)
64
+ rack (>= 1.6.0)
65
+ rack-test (>= 0.6.3)
66
+ regexp_parser (~> 1.2)
67
+ xpath (~> 3.2)
68
+ capybara-screenshot (1.0.21)
69
+ capybara (>= 1.0, < 4)
70
+ launchy
71
+ childprocess (0.9.0)
72
+ ffi (~> 1.0, >= 1.0.11)
73
+ cliver (0.3.2)
74
+ coderay (1.1.2)
75
+ coffee-rails (4.2.2)
76
+ coffee-script (>= 2.2.0)
77
+ railties (>= 4.0.0)
78
+ coffee-script (2.4.1)
79
+ coffee-script-source
80
+ execjs
81
+ coffee-script-source (1.12.2)
82
+ concurrent-ruby (1.0.5)
83
+ crass (1.0.4)
84
+ diff-lcs (1.3)
85
+ docile (1.1.5)
86
+ erubis (2.7.0)
87
+ execjs (2.7.0)
88
+ faker (1.8.7)
89
+ i18n (>= 0.7)
90
+ ffi (1.9.25)
91
+ font-awesome-sass (4.4.0)
92
+ sass (>= 3.2)
93
+ globalid (0.4.1)
94
+ activesupport (>= 4.2.0)
95
+ haml (5.0.4)
96
+ temple (>= 0.8.0)
97
+ tilt
98
+ httparty (0.16.2)
99
+ multi_xml (>= 0.5.2)
100
+ i18n (1.0.1)
101
+ concurrent-ruby (~> 1.0)
102
+ inch (0.6.4)
103
+ pry
104
+ sparkr (>= 0.2.0)
105
+ term-ansicolor
106
+ yard (~> 0.8.7.5)
107
+ jquery-rails (4.3.3)
108
+ rails-dom-testing (>= 1, < 3)
109
+ railties (>= 4.2.0)
110
+ thor (>= 0.14, < 2.0)
111
+ jquery-ui-rails (5.0.5)
112
+ railties (>= 3.2.16)
113
+ jquery-ui-themes (0.0.12)
114
+ httparty
115
+ json (1.8.6)
116
+ kaminari (1.1.1)
117
+ activesupport (>= 4.1.0)
118
+ kaminari-actionview (= 1.1.1)
119
+ kaminari-activerecord (= 1.1.1)
120
+ kaminari-core (= 1.1.1)
121
+ kaminari-actionview (1.1.1)
122
+ actionview
123
+ kaminari-core (= 1.1.1)
124
+ kaminari-activerecord (1.1.1)
125
+ activerecord
126
+ kaminari-core (= 1.1.1)
127
+ kaminari-core (1.1.1)
128
+ launchy (2.4.3)
129
+ addressable (~> 2.3)
130
+ libv8 (3.16.14.19)
131
+ loofah (2.2.2)
132
+ crass (~> 1.0.2)
133
+ nokogiri (>= 1.5.9)
134
+ mail (2.7.0)
135
+ mini_mime (>= 0.1.1)
136
+ method_source (0.9.0)
137
+ mini_mime (1.0.0)
138
+ mini_portile2 (2.4.0)
139
+ minitest (5.11.3)
140
+ multi_json (1.13.1)
141
+ multi_xml (0.6.0)
142
+ nio4r (2.3.1)
143
+ nokogiri (1.10.1)
144
+ mini_portile2 (~> 2.4.0)
145
+ poltergeist (1.18.1)
146
+ capybara (>= 2.1, < 4)
147
+ cliver (~> 0.3.1)
148
+ websocket-driver (>= 0.2.0)
149
+ pry (0.11.3)
150
+ coderay (~> 1.1.0)
151
+ method_source (~> 0.9.0)
152
+ public_suffix (3.0.2)
153
+ rack (2.0.6)
154
+ rack-test (0.6.3)
155
+ rack (>= 1.0)
156
+ rails (5.0.7)
157
+ actioncable (= 5.0.7)
158
+ actionmailer (= 5.0.7)
159
+ actionpack (= 5.0.7)
160
+ actionview (= 5.0.7)
161
+ activejob (= 5.0.7)
162
+ activemodel (= 5.0.7)
163
+ activerecord (= 5.0.7)
164
+ activesupport (= 5.0.7)
165
+ bundler (>= 1.3.0)
166
+ railties (= 5.0.7)
167
+ sprockets-rails (>= 2.0.0)
168
+ rails-dom-testing (2.0.3)
169
+ activesupport (>= 4.2.0)
170
+ nokogiri (>= 1.6)
171
+ rails-html-sanitizer (1.0.4)
172
+ loofah (~> 2.2, >= 2.2.2)
173
+ railties (5.0.7)
174
+ actionpack (= 5.0.7)
175
+ activesupport (= 5.0.7)
176
+ method_source
177
+ rake (>= 0.8.7)
178
+ thor (>= 0.18.1, < 2.0)
179
+ rake (10.5.0)
180
+ rb-fsevent (0.10.3)
181
+ rb-inotify (0.9.10)
182
+ ffi (>= 0.5.0, < 2)
183
+ rdoc (4.2.2)
184
+ json (~> 1.4)
185
+ ref (2.0.0)
186
+ regexp_parser (1.3.0)
187
+ rspec (3.6.0)
188
+ rspec-core (~> 3.6.0)
189
+ rspec-expectations (~> 3.6.0)
190
+ rspec-mocks (~> 3.6.0)
191
+ rspec-core (3.6.0)
192
+ rspec-support (~> 3.6.0)
193
+ rspec-expectations (3.6.0)
194
+ diff-lcs (>= 1.2.0, < 2.0)
195
+ rspec-support (~> 3.6.0)
196
+ rspec-mocks (3.6.0)
197
+ diff-lcs (>= 1.2.0, < 2.0)
198
+ rspec-support (~> 3.6.0)
199
+ rspec-rails (3.6.1)
200
+ actionpack (>= 3.0)
201
+ activesupport (>= 3.0)
202
+ railties (>= 3.0)
203
+ rspec-core (~> 3.6.0)
204
+ rspec-expectations (~> 3.6.0)
205
+ rspec-mocks (~> 3.6.0)
206
+ rspec-support (~> 3.6.0)
207
+ rspec-support (3.6.0)
208
+ rubyzip (1.2.1)
209
+ sass (3.5.6)
210
+ sass-listen (~> 4.0.0)
211
+ sass-listen (4.0.0)
212
+ rb-fsevent (~> 0.9, >= 0.9.4)
213
+ rb-inotify (~> 0.9, >= 0.9.7)
214
+ sass-rails (5.0.7)
215
+ railties (>= 4.0.0, < 6)
216
+ sass (~> 3.1)
217
+ sprockets (>= 2.8, < 4.0)
218
+ sprockets-rails (>= 2.0, < 4.0)
219
+ tilt (>= 1.1, < 3)
220
+ selenium-webdriver (2.51.0)
221
+ childprocess (~> 0.5)
222
+ multi_json (~> 1.0)
223
+ rubyzip (~> 1.0)
224
+ websocket (~> 1.0)
225
+ shoulda-matchers (2.8.0)
226
+ activesupport (>= 3.0.0)
227
+ simplecov (0.14.1)
228
+ docile (~> 1.1.0)
229
+ json (>= 1.8, < 3)
230
+ simplecov-html (~> 0.10.0)
231
+ simplecov-html (0.10.2)
232
+ sparkr (0.4.1)
233
+ sprockets (3.7.1)
234
+ concurrent-ruby (~> 1.0)
235
+ rack (> 1, < 3)
236
+ sprockets-rails (3.2.1)
237
+ actionpack (>= 4.0)
238
+ activesupport (>= 4.0)
239
+ sprockets (>= 3.0.0)
240
+ sqlite3 (1.3.13)
241
+ temple (0.8.0)
242
+ term-ansicolor (1.6.0)
243
+ tins (~> 1.0)
244
+ therubyracer (0.12.3)
245
+ libv8 (~> 3.16.14.15)
246
+ ref
247
+ thor (0.19.4)
248
+ thread_safe (0.3.6)
249
+ tilt (2.0.8)
250
+ tins (1.16.3)
251
+ turbolinks (5.1.1)
252
+ turbolinks-source (~> 5.1)
253
+ turbolinks-source (5.1.0)
254
+ tzinfo (1.2.5)
255
+ thread_safe (~> 0.1)
256
+ websocket (1.2.8)
257
+ websocket-driver (0.6.5)
258
+ websocket-extensions (>= 0.1.0)
259
+ websocket-extensions (0.1.3)
260
+ xpath (3.2.0)
261
+ nokogiri (~> 1.8)
262
+ yard (0.8.7.6)
263
+
264
+ PLATFORMS
265
+ ruby
266
+
267
+ DEPENDENCIES
268
+ appraisal
269
+ bootstrap-sass (= 3.1.1.1)
270
+ bundler (~> 1.3)
271
+ byebug
272
+ capybara (~> 3.13.2)
273
+ capybara-screenshot (~> 1.0.11)
274
+ coderay (~> 1.1.0)
275
+ faker (~> 1.8.7)
276
+ font-awesome-sass (= 4.4.0)
277
+ haml (~> 5.0.4)
278
+ inch (~> 0.6.4)
279
+ jquery-rails (~> 4.3.3)
280
+ jquery-ui-rails (~> 5.0.5)
281
+ jquery-ui-themes (~> 0.0.11)
282
+ poltergeist (~> 1.18.0)
283
+ rails (~> 5.0.0)
284
+ rake (~> 10.1)
285
+ rdoc (~> 4.2.0)
286
+ rspec (~> 3.6.0)
287
+ rspec-rails (~> 3.6.0)
288
+ sass-rails (>= 3.2)
289
+ selenium-webdriver (~> 2.51.0)
290
+ shoulda-matchers (= 2.8.0)
291
+ simplecov (~> 0.7)
292
+ sqlite3 (~> 1.3)
293
+ therubyracer
294
+ turbolinks (~> 5.1.1)
295
+ wice_grid!
296
+ yard (~> 0.8)
297
+
298
+ BUNDLED WITH
299
+ 1.17.2