wice_grid 3.6.2 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +41 -0
- data/.circleci/run-build-locally.sh +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- data/.gitignore +5 -2
- data/Appraisals +11 -0
- data/CHANGELOG.md +38 -1
- data/Gemfile.lock +299 -0
- data/README.md +77 -34
- data/config/locales/ja.yml +3 -3
- data/gemfiles/rails_5.0.gemfile +7 -0
- data/gemfiles/rails_5.0.gemfile.lock +291 -0
- data/gemfiles/rails_5.1.gemfile +7 -0
- data/gemfiles/rails_5.1.gemfile.lock +291 -0
- data/gemfiles/rails_5.2.gemfile +7 -0
- data/gemfiles/rails_5.2.gemfile.lock +299 -0
- data/lib/wice/columns.rb +13 -6
- data/lib/wice/columns/column_integer.rb +11 -1
- data/lib/wice/columns/column_rails_datetime_helper.rb +3 -2
- data/lib/wice/columns/column_range.rb +6 -4
- data/lib/wice/grid_renderer.rb +23 -7
- data/lib/wice/helpers/bs_calendar_helpers.rb +9 -1
- data/lib/wice/helpers/wice_grid_view_helpers.rb +6 -6
- data/lib/wice/wice_grid_controller.rb +7 -5
- data/lib/wice/wice_grid_core_ext.rb +5 -1
- data/lib/wice/wice_grid_misc.rb +1 -1
- data/lib/wice_grid.rb +86 -59
- data/spec/acceptance_helper.rb +58 -0
- data/spec/features/action_column_request_spec.rb +280 -0
- data/spec/features/adding_rows_request_spec.rb +21 -0
- data/spec/features/all_records_request_spec.rb +18 -0
- data/spec/features/auto_reloads2_request_spec.rb +349 -0
- data/spec/features/auto_reloads3_request_spec.rb +130 -0
- data/spec/features/auto_reloads_request_spec.rb +348 -0
- data/spec/features/basics1_request_spec.rb +11 -0
- data/spec/features/basics2_request_spec.rb +10 -0
- data/spec/features/basics3_request_spec.rb +29 -0
- data/spec/features/basics4_request_spec.rb +19 -0
- data/spec/features/basics5_request_spec.rb +13 -0
- data/spec/features/basics6_request_spec.rb +22 -0
- data/spec/features/blockless_column_definition_spec.rb +27 -0
- data/spec/features/buttons_request_spec.rb +172 -0
- data/spec/features/csv_and_detached_filters_spec.rb +10 -0
- data/spec/features/csv_export_request_spec.rb +13 -0
- data/spec/features/custom_filter_params_request_spec.rb +29 -0
- data/spec/features/custom_filters1_request_spec.rb +155 -0
- data/spec/features/custom_filters2_request_spec.rb +53 -0
- data/spec/features/custom_filters3_request_spec.rb +50 -0
- data/spec/features/custom_filters4_request_spec.rb +13 -0
- data/spec/features/custom_ordering_on_calculated_request_spec.rb +30 -0
- data/spec/features/custom_ordering_request_spec.rb +36 -0
- data/spec/features/custom_ordering_with_arel_request_spec.rb +36 -0
- data/spec/features/custom_ordering_with_proc_request_spec.rb +44 -0
- data/spec/features/custom_ordering_with_ruby_request_spec.rb +30 -0
- data/spec/features/dates_request_spec.rb +56 -0
- data/spec/features/detached_filters_spec.rb +10 -0
- data/spec/features/detached_filters_two_grids_spec.rb +127 -0
- data/spec/features/disable_all_filters_spec.rb +22 -0
- data/spec/features/hiding_checkboxes_in_action_column_request_spec.rb +294 -0
- data/spec/features/integration_with_application_view_request_spec.rb +43 -0
- data/spec/features/integration_with_forms_request_spec.rb +141 -0
- data/spec/features/joining_tables_spec.rb +40 -0
- data/spec/features/localization_request_spec.rb +24 -0
- data/spec/features/many_grids_on_page_request_spec.rb +104 -0
- data/spec/features/negation_request_spec.rb +25 -0
- data/spec/features/no_records_request_spec.rb +26 -0
- data/spec/features/numeric_filters_request_spec.rb +10 -0
- data/spec/features/resultset_processings2_request_spec.rb +27 -0
- data/spec/features/resultset_processings_request_spec.rb +30 -0
- data/spec/features/saved_queries_request_spec.rb +120 -0
- data/spec/features/shared.rb +1005 -0
- data/spec/features/shared_detached_filters.rb +158 -0
- data/spec/features/styling_spec.rb +15 -0
- data/spec/features/two_associations_spec.rb +48 -0
- data/spec/features/upper_pagination_panel_request_spec.rb +23 -0
- data/spec/features/when_filtered_spec.rb +209 -0
- data/spec/fixtures/.gitkeep +0 -0
- data/spec/fixtures/companies.yml +21 -0
- data/spec/fixtures/priorities.yml +31 -0
- data/spec/fixtures/project_roles.yml +25 -0
- data/spec/fixtures/projects.yml +22 -0
- data/spec/fixtures/statuses.yml +55 -0
- data/spec/fixtures/tasks.yml +751 -0
- data/spec/fixtures/tasks_users.yml +2089 -0
- data/spec/fixtures/users.yml +61 -0
- data/spec/fixtures/versions.yml +78 -0
- data/spec/models/company_spec.rb +6 -0
- data/spec/models/priority_spec.rb +6 -0
- data/spec/models/project_spec.rb +11 -0
- data/spec/models/status_spec.rb +6 -0
- data/spec/models/task_spec.rb +12 -0
- data/spec/models/user_project_participation_spec.rb +7 -0
- data/spec/models/user_spec.rb +12 -0
- data/spec/models/version_spec.rb +5 -0
- data/spec/rails_helper.rb +15 -0
- data/spec/spec_helper.rb +10 -9
- data/spec/support/test_app/Rakefile +3 -0
- data/spec/support/test_app/app/assets/javascripts/application.js +20 -0
- data/spec/support/test_app/app/assets/javascripts/common.js.coffee +6 -0
- data/spec/support/test_app/app/assets/javascripts/jquery.ui.datepicker.locales.js +56 -0
- data/spec/support/test_app/app/assets/stylesheets/adding_rows.scss +3 -0
- data/spec/support/test_app/app/assets/stylesheets/application.scss +46 -0
- data/spec/support/test_app/app/assets/stylesheets/csv_and_detached_filters.scss +3 -0
- data/spec/support/test_app/app/assets/stylesheets/many_grids_on_page.scss +3 -0
- data/spec/support/test_app/app/controllers/action_column_controller.rb +15 -0
- data/spec/support/test_app/app/controllers/adding_rows_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/all_records_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/application_controller.rb +99 -0
- data/spec/support/test_app/app/controllers/auto_reloads2_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/auto_reloads3_controller.rb +20 -0
- data/spec/support/test_app/app/controllers/auto_reloads_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/basics1_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics2_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics3_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics4_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics5_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics6_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/blockless_column_definition_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/buttons_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/csv_and_detached_filters_controller.rb +13 -0
- data/spec/support/test_app/app/controllers/csv_export_controller.rb +28 -0
- data/spec/support/test_app/app/controllers/custom_filter_params_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/custom_filters1_controller.rb +9 -0
- data/spec/support/test_app/app/controllers/custom_filters2_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/custom_filters3_controller.rb +12 -0
- data/spec/support/test_app/app/controllers/custom_filters4_controller.rb +12 -0
- data/spec/support/test_app/app/controllers/custom_ordering_controller.rb +18 -0
- data/spec/support/test_app/app/controllers/custom_ordering_on_calculated_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_arel_controller.rb +18 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_proc_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_ruby_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/dates_controller.rb +8 -0
- data/spec/support/test_app/app/controllers/detached_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/detached_filters_two_grids_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/disable_all_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/hiding_checkboxes_in_action_column_controller.rb +13 -0
- data/spec/support/test_app/app/controllers/home_controller.rb +3 -0
- data/spec/support/test_app/app/controllers/integration_with_application_view_controller.rb +16 -0
- data/spec/support/test_app/app/controllers/integration_with_forms_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/joining_tables_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/localization_controller.rb +26 -0
- data/spec/support/test_app/app/controllers/many_grids_on_page_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/negation_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/no_records_controller.rb +8 -0
- data/spec/support/test_app/app/controllers/null_values_controller.rb +10 -0
- data/spec/support/test_app/app/controllers/numeric_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/queries_controller.rb +4 -0
- data/spec/support/test_app/app/controllers/resultset_processings2_controller.rb +29 -0
- data/spec/support/test_app/app/controllers/resultset_processings_controller.rb +30 -0
- data/spec/support/test_app/app/controllers/saved_queries_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/styling_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/tasks_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/two_associations_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/upper_pagination_panel_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/when_filtered_controller.rb +6 -0
- data/spec/support/test_app/app/helpers/application_helper.rb +82 -0
- data/spec/support/test_app/app/mailers/.gitkeep +0 -0
- data/spec/support/test_app/app/models/.gitkeep +0 -0
- data/spec/support/test_app/app/models/company.rb +5 -0
- data/spec/support/test_app/app/models/populate.rb +84 -0
- data/spec/support/test_app/app/models/priority.rb +10 -0
- data/spec/support/test_app/app/models/project.rb +14 -0
- data/spec/support/test_app/app/models/project_role.rb +3 -0
- data/spec/support/test_app/app/models/status.rb +10 -0
- data/spec/support/test_app/app/models/task.rb +11 -0
- data/spec/support/test_app/app/models/to_dropdown_mixin.rb +16 -0
- data/spec/support/test_app/app/models/user.rb +8 -0
- data/spec/support/test_app/app/models/user_project_participation.rb +6 -0
- data/spec/support/test_app/app/models/version.rb +6 -0
- data/spec/support/test_app/app/views/action_column/_grid.html.erb +35 -0
- data/spec/support/test_app/app/views/action_column/index.html.haml +45 -0
- data/spec/support/test_app/app/views/adding_rows/_grid.html.erb +58 -0
- data/spec/support/test_app/app/views/adding_rows/index.html.haml +37 -0
- data/spec/support/test_app/app/views/all_records/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/all_records/index.html.haml +12 -0
- data/spec/support/test_app/app/views/auto_reloads/_grid.html.erb +32 -0
- data/spec/support/test_app/app/views/auto_reloads/index.html.haml +15 -0
- data/spec/support/test_app/app/views/auto_reloads2/_grid.html.erb +32 -0
- data/spec/support/test_app/app/views/auto_reloads2/index.html.haml +65 -0
- data/spec/support/test_app/app/views/auto_reloads3/_grid.html.erb +25 -0
- data/spec/support/test_app/app/views/auto_reloads3/index.html.haml +78 -0
- data/spec/support/test_app/app/views/basics1/_grid.html.erb +26 -0
- data/spec/support/test_app/app/views/basics1/index.html.haml +13 -0
- data/spec/support/test_app/app/views/basics2/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/basics2/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics3/_grid.html.erb +28 -0
- data/spec/support/test_app/app/views/basics3/index.html.haml +13 -0
- data/spec/support/test_app/app/views/basics4/_grid.html.erb +21 -0
- data/spec/support/test_app/app/views/basics4/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics5/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/basics5/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics6/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/basics6/index.html.haml +23 -0
- data/spec/support/test_app/app/views/blockless_column_definition/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/blockless_column_definition/index.html.haml +15 -0
- data/spec/support/test_app/app/views/buttons/_grid.html.erb +20 -0
- data/spec/support/test_app/app/views/buttons/index.html.haml +30 -0
- data/spec/support/test_app/app/views/csv_and_detached_filters/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/csv_and_detached_filters/index.html.haml +58 -0
- data/spec/support/test_app/app/views/csv_export/_projects_grid.html.erb +17 -0
- data/spec/support/test_app/app/views/csv_export/_tasks_grid.html.erb +43 -0
- data/spec/support/test_app/app/views/csv_export/index.html.haml +90 -0
- data/spec/support/test_app/app/views/custom_filter_params/_grid.html.erb +12 -0
- data/spec/support/test_app/app/views/custom_filter_params/index.html.haml +12 -0
- data/spec/support/test_app/app/views/custom_filters1/_g1.html.erb +8 -0
- data/spec/support/test_app/app/views/custom_filters1/_g2.html.erb +9 -0
- data/spec/support/test_app/app/views/custom_filters1/_g3.html.erb +9 -0
- data/spec/support/test_app/app/views/custom_filters1/_g4.html.erb +8 -0
- data/spec/support/test_app/app/views/custom_filters1/index.html.haml +30 -0
- data/spec/support/test_app/app/views/custom_filters2/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/custom_filters2/index.html.haml +41 -0
- data/spec/support/test_app/app/views/custom_filters3/_grid.html.erb +18 -0
- data/spec/support/test_app/app/views/custom_filters3/index.html.haml +16 -0
- data/spec/support/test_app/app/views/custom_filters4/_grid.html.erb +20 -0
- data/spec/support/test_app/app/views/custom_filters4/index.html.haml +12 -0
- data/spec/support/test_app/app/views/custom_ordering/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering/index.html.haml +24 -0
- data/spec/support/test_app/app/views/custom_ordering_on_calculated/_grid.html.erb +14 -0
- data/spec/support/test_app/app/views/custom_ordering_on_calculated/index.html.haml +23 -0
- data/spec/support/test_app/app/views/custom_ordering_with_arel/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_arel/index.html.haml +24 -0
- data/spec/support/test_app/app/views/custom_ordering_with_proc/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_proc/index.html.haml +21 -0
- data/spec/support/test_app/app/views/custom_ordering_with_ruby/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_ruby/index.html.haml +23 -0
- data/spec/support/test_app/app/views/dates/_grid.html.erb +25 -0
- data/spec/support/test_app/app/views/dates/index.html.haml +52 -0
- data/spec/support/test_app/app/views/detached_filters/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/detached_filters/index.html.haml +79 -0
- data/spec/support/test_app/app/views/detached_filters_two_grids/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/detached_filters_two_grids/index.html.haml +85 -0
- data/spec/support/test_app/app/views/disable_all_filters/_grid.html.erb +21 -0
- data/spec/support/test_app/app/views/disable_all_filters/index.html.haml +14 -0
- data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/_grid.html.erb +34 -0
- data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/index.html.haml +32 -0
- data/spec/support/test_app/app/views/integration_with_application_view/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/integration_with_application_view/index.html.haml +33 -0
- data/spec/support/test_app/app/views/integration_with_forms/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/integration_with_forms/index.html.haml +18 -0
- data/spec/support/test_app/app/views/joining_tables/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/joining_tables/index.html.haml +26 -0
- data/spec/support/test_app/app/views/layouts/application.html.haml +61 -0
- data/spec/support/test_app/app/views/localization/_grid.html.erb +36 -0
- data/spec/support/test_app/app/views/localization/index.html.haml +20 -0
- data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid1.html.erb +12 -0
- data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid2.html.erb +12 -0
- data/spec/support/test_app/app/views/many_grids_on_page/index.html.haml +26 -0
- data/spec/support/test_app/app/views/negation/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/negation/index.html.haml +15 -0
- data/spec/support/test_app/app/views/no_records/_empty_grid.html.haml +1 -0
- data/spec/support/test_app/app/views/no_records/_grid1.html.erb +11 -0
- data/spec/support/test_app/app/views/no_records/_grid2.html.erb +9 -0
- data/spec/support/test_app/app/views/no_records/_grid3.html.erb +9 -0
- data/spec/support/test_app/app/views/no_records/index.html.haml +24 -0
- data/spec/support/test_app/app/views/null_values/_grid.html.erb +17 -0
- data/spec/support/test_app/app/views/null_values/index.html.haml +21 -0
- data/spec/support/test_app/app/views/numeric_filters/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/numeric_filters/index.html.haml +12 -0
- data/spec/support/test_app/app/views/resultset_processings/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/resultset_processings/index.html.haml +50 -0
- data/spec/support/test_app/app/views/resultset_processings2/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/resultset_processings2/index.html.haml +48 -0
- data/spec/support/test_app/app/views/saved_queries/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/saved_queries/index.html.haml +15 -0
- data/spec/support/test_app/app/views/styling/_grid1.html.erb +12 -0
- data/spec/support/test_app/app/views/styling/_grid2.html.erb +31 -0
- data/spec/support/test_app/app/views/styling/index.html.haml +65 -0
- data/spec/support/test_app/app/views/tasks/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/tasks/index.html.haml +1 -0
- data/spec/support/test_app/app/views/two_associations/_grid.html.erb +13 -0
- data/spec/support/test_app/app/views/two_associations/index.html.haml +13 -0
- data/spec/support/test_app/app/views/upper_pagination_panel/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/upper_pagination_panel/index.html.haml +14 -0
- data/spec/support/test_app/app/views/when_filtered/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/when_filtered/index.html.haml +15 -0
- data/spec/support/test_app/bin/rails +4 -0
- data/spec/support/test_app/bin/rake +4 -0
- data/spec/support/test_app/config.ru +5 -0
- data/spec/support/test_app/config/application.rb +70 -0
- data/spec/support/test_app/config/boot.rb +7 -0
- data/spec/support/test_app/config/database.travis.yml +27 -0
- data/spec/support/test_app/config/database.yml +16 -0
- data/spec/support/test_app/config/database.yml.mysql +19 -0
- data/spec/support/test_app/config/database.yml.postgresql +18 -0
- data/spec/support/test_app/config/environment.rb +6 -0
- data/spec/support/test_app/config/environments/development.rb +34 -0
- data/spec/support/test_app/config/environments/production.rb +66 -0
- data/spec/support/test_app/config/environments/test.rb +34 -0
- data/spec/support/test_app/config/initializers/backtrace_silencers.rb +8 -0
- data/spec/support/test_app/config/initializers/inflections.rb +16 -0
- data/spec/support/test_app/config/initializers/mime_types.rb +6 -0
- data/spec/support/test_app/config/initializers/secret_token.rb +12 -0
- data/spec/support/test_app/config/initializers/session_store.rb +9 -0
- data/spec/support/test_app/config/initializers/wice_grid_config.rb +163 -0
- data/spec/support/test_app/config/initializers/wrap_parameters.rb +15 -0
- data/spec/support/test_app/config/locales/en.yml +5 -0
- data/spec/support/test_app/config/locales/wice_grid.yml +550 -0
- data/spec/support/test_app/config/puma.rb +15 -0
- data/spec/support/test_app/config/routes.rb +125 -0
- data/spec/support/test_app/db/migrate/20120224193505_create_tasks.rb +27 -0
- data/spec/support/test_app/db/migrate/20120224193517_create_users.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224193522_create_projects.rb +14 -0
- data/spec/support/test_app/db/migrate/20120224193529_create_priorities.rb +13 -0
- data/spec/support/test_app/db/migrate/20120224193537_create_statuses.rb +13 -0
- data/spec/support/test_app/db/migrate/20120224193543_create_versions.rb +15 -0
- data/spec/support/test_app/db/migrate/20120224193550_create_project_roles.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224193610_create_companies.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224195351_create_user_project_participations.rb +16 -0
- data/spec/support/test_app/db/migrate/20120224195521_add_tasks_users.rb +11 -0
- data/spec/support/test_app/db/migrate/20120610091944_create_wice_grid_serialized_queries.rb +14 -0
- data/spec/support/test_app/db/schema.rb +139 -0
- data/spec/support/test_app/db/seeds.rb +10 -0
- data/spec/support/test_app/lib/ar_fixtures.rb +100 -0
- data/spec/support/test_app/lib/assets/.gitkeep +0 -0
- data/spec/support/test_app/lib/tasks/.gitkeep +0 -0
- data/spec/support/test_app/lib/tasks/ar_fixtures.rake +45 -0
- data/spec/support/test_app/public/404.html +26 -0
- data/spec/support/test_app/public/422.html +26 -0
- data/spec/support/test_app/public/500.html +25 -0
- data/spec/support/test_app/public/favicon.ico +0 -0
- data/spec/support/test_app/public/robots.txt +5 -0
- data/spec/wice/grid_output_buffer_spec.rb +2 -2
- data/spec/wice/table_column_matrix_spec.rb +1 -1
- data/vendor/assets/javascripts/wice_grid_init.js.coffee +16 -4
- data/vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee +1 -0
- data/wice_grid.gemspec +29 -9
- metadata +606 -62
- data/release_notes/RELEASE_NOTES_3.2.pre1.rdoc +0 -81
- data/release_notes/RELEASE_NOTES_3.2.pre2.rdoc +0 -6
- data/release_notes/RELEASE_NOTES_3.3.0.rdoc +0 -21
- data/spec/support/wice_grid_test_config.rb +0 -173
- data/test/readme.txt +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffa67485e8c5b744de4c75571a8a7bb215dcbb8b
|
4
|
+
data.tar.gz: 1539eecea14d8237f45a1236c01e4cee256cfd0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4528f65df5ad1a855634488c973c7de12ea0c7a7856228c8446eed3936a9e5f087dec806d444bc1dfd5ac38c92ddb299010f0607a01d19c149274b949d32135
|
7
|
+
data.tar.gz: 0bdd33ca776e33104837df5951d42c657bda575f86cf14e6fa4be66446e4d3dec965fd7b0dab90d1c505c519b4d53eb3da2739f51ac1f2b427b954ad9588446a
|
@@ -0,0 +1,41 @@
|
|
1
|
+
version: 2
|
2
|
+
jobs:
|
3
|
+
build:
|
4
|
+
working_directory: ~/wice_grid
|
5
|
+
docker:
|
6
|
+
- image: circleci/ruby:2.4.1
|
7
|
+
environment:
|
8
|
+
RAILS_ENV: test
|
9
|
+
steps:
|
10
|
+
- checkout
|
11
|
+
|
12
|
+
# Install PhantomJS (if not found in cache)
|
13
|
+
- run:
|
14
|
+
name: Install phantomjs
|
15
|
+
command: |
|
16
|
+
if ! [ $(which phantomjs) ]; then
|
17
|
+
sudo curl --output /usr/local/bin/phantomjs https://s3.amazonaws.com/circle-downloads/phantomjs-2.1.1
|
18
|
+
fi
|
19
|
+
|
20
|
+
sudo chmod ugo+x /usr/local/bin/phantomjs
|
21
|
+
|
22
|
+
# Restore Cached Dependencies
|
23
|
+
- type: cache-restore
|
24
|
+
name: Restore bundle cache
|
25
|
+
key: wice_grid-{{ checksum "Gemfile.lock" }}
|
26
|
+
|
27
|
+
# Bundle install dependencies
|
28
|
+
- run: bundle install --path vendor/bundle
|
29
|
+
|
30
|
+
# Install Appraisal gemfiles
|
31
|
+
- run: bundle exec appraisal install
|
32
|
+
|
33
|
+
# Cache Dependencies
|
34
|
+
- type: cache-save
|
35
|
+
name: Store bundle cache
|
36
|
+
key: wice_grid-{{ checksum "Gemfile.lock" }}
|
37
|
+
paths:
|
38
|
+
- vendor/bundle
|
39
|
+
|
40
|
+
# Run the tests
|
41
|
+
- run: bundle exec appraisal rspec
|
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
curl --user ${CIRCLE_TOKEN}: \
|
3
|
+
--request POST \
|
4
|
+
--form revision=fa279c82728d4e0d764f09f3db0f63269575fba4 \
|
5
|
+
--form config=@config.yml \
|
6
|
+
--form notify=false \
|
7
|
+
https://circleci.com/api/v1.1/project/github/patricklindsay/wice_grid/tree/master
|
@@ -0,0 +1,32 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
## Precheck
|
8
|
+
|
9
|
+
- For bugs, do a quick search and make sure the bug has not yet been reported
|
10
|
+
- Try to be clear and concise - the more information you provide the easier it is for us to resolve
|
11
|
+
- Things to include;
|
12
|
+
- Code samples
|
13
|
+
- Stack traces
|
14
|
+
- Screenshots
|
15
|
+
- Sample application or a test case that reproduces the error.
|
16
|
+
|
17
|
+
## Environment
|
18
|
+
|
19
|
+
- Ruby **[version]**
|
20
|
+
- Rails **[version]**
|
21
|
+
- WiceGrid **[version]**
|
22
|
+
|
23
|
+
## Description of issue
|
24
|
+
|
25
|
+
|
26
|
+
## Current behaviour
|
27
|
+
|
28
|
+
|
29
|
+
## Expected behaviour
|
30
|
+
|
31
|
+
|
32
|
+
## Additional context
|
data/.gitignore
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
.idea
|
6
6
|
.yardoc
|
7
7
|
.rbenv-version
|
8
|
-
Gemfile.lock
|
9
8
|
InstalledFiles
|
10
9
|
_yardoc
|
11
10
|
coverage
|
@@ -16,4 +15,8 @@ rdoc
|
|
16
15
|
spec/reports
|
17
16
|
test/tmp
|
18
17
|
test/version_tmp
|
19
|
-
tmp
|
18
|
+
tmp
|
19
|
+
.byebug_history
|
20
|
+
spec/support/test_app/log
|
21
|
+
spec/support/test_app/tmp
|
22
|
+
spec/support/test_app/db/*.sqlite3
|
data/Appraisals
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,41 @@
|
|
1
|
-
|
1
|
+
## Unreleased
|
2
|
+
|
3
|
+
## 4.1.0 (28 November, 2018)
|
4
|
+
|
5
|
+
* Add option `filter_control_options` to columns. Initial use is to pass in the options `start_year`, `end_year`, and `max_year_allowed` when using `rails_datetime_helper` - [#12](https://github.com/patricklindsay/wice_grid/pull/18)
|
6
|
+
* Fix deprecation (in Rails 5.0.x) and incorrect behaviour (in Rails 5.1.x) of CSV exports - [#4](https://github.com/patricklindsay/wice_grid/pull/4)
|
7
|
+
* Fix deprecation (in Rails 5.2) regarding "Dangerous query methods" in `order` clauses. Note that when using the `custom_order` option you must pass a value acceptable for ActiveRecord's `order` method, otherwise you will receive the same warning. - [#41](https://github.com/patricklindsay/wice_grid/pull/41)
|
8
|
+
* Add support for using `Arel::Attributes::Attribute`s with the `custom_order` option. - [#41](https://github.com/patricklindsay/wice_grid/pull/41)
|
9
|
+
* Added `sort_by` option to column to allow arbitrary, Ruby-based ordering. - [#3](https://github.com/patricklindsay/wice_grid/pull/3)
|
10
|
+
* Added Rails 5.2 support
|
11
|
+
* Bump Kaminari to ~> 1.1.0
|
12
|
+
|
13
|
+
## 4.0.1 (31 May, 2018)
|
14
|
+
|
15
|
+
* Fixed tagbuilder issue with Rails 5.0.x - [#1](https://github.com/patricklindsay/wice_grid/pull/1)
|
16
|
+
* Moved testbed into repo - [#12](https://github.com/patricklindsay/wice_grid/pull/12)
|
17
|
+
* Remove old release notes and empty /test directory
|
18
|
+
* Removed `Gemfile.lock` from `.gitignore`
|
19
|
+
* Removed `codeclimate-test-reporter` dev dependancy
|
20
|
+
|
21
|
+
## 4.0.0 (18 Jan, 2018)
|
22
|
+
|
23
|
+
### Rails 5.0 & 5.1 Support
|
24
|
+
Added support for Rails 5.0 & 5.1. Anything below Rails 5 is no longer supported.
|
25
|
+
|
26
|
+
### Focused Filter Has Cursor/Caret at the End of Input
|
27
|
+
|
28
|
+
The cursor/caret used to appear at the beginning of the focused autocomplete in FF and IE.
|
29
|
+
This caused annoyances for users of those browsers who typed slowly since the page would
|
30
|
+
reload and when they started typing again the text would appear before their last entries.
|
31
|
+
|
32
|
+
For example if someone was searching for 'john' but paused after 'joh', they would end up typing 'njoh', instead of 'john'. If they weren't paying attention,
|
33
|
+
they might think there is no 'john', when they'd mistakenly searched for 'njoh'.
|
34
|
+
|
35
|
+
### Turbolinks 5 Support
|
36
|
+
Handled by initializing WiceGrid on `turbolinks:render` as well as `page:load ready`
|
37
|
+
|
38
|
+
## 3.6.0
|
2
39
|
|
3
40
|
## New API For Joined Tables
|
4
41
|
|
data/Gemfile.lock
ADDED
@@ -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.0)
|
7
|
+
rails (~> 5.0, < 5.3)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (5.1.4)
|
13
|
+
actionpack (= 5.1.4)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (~> 0.6.1)
|
16
|
+
actionmailer (5.1.4)
|
17
|
+
actionpack (= 5.1.4)
|
18
|
+
actionview (= 5.1.4)
|
19
|
+
activejob (= 5.1.4)
|
20
|
+
mail (~> 2.5, >= 2.5.4)
|
21
|
+
rails-dom-testing (~> 2.0)
|
22
|
+
actionpack (5.1.4)
|
23
|
+
actionview (= 5.1.4)
|
24
|
+
activesupport (= 5.1.4)
|
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.1.4)
|
30
|
+
activesupport (= 5.1.4)
|
31
|
+
builder (~> 3.1)
|
32
|
+
erubi (~> 1.4)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
35
|
+
activejob (5.1.4)
|
36
|
+
activesupport (= 5.1.4)
|
37
|
+
globalid (>= 0.3.6)
|
38
|
+
activemodel (5.1.4)
|
39
|
+
activesupport (= 5.1.4)
|
40
|
+
activerecord (5.1.4)
|
41
|
+
activemodel (= 5.1.4)
|
42
|
+
activesupport (= 5.1.4)
|
43
|
+
arel (~> 8.0)
|
44
|
+
activesupport (5.1.4)
|
45
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
46
|
+
i18n (~> 0.7)
|
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 (8.0.0)
|
56
|
+
bootstrap-sass (3.1.1.1)
|
57
|
+
sass (~> 3.2)
|
58
|
+
builder (3.2.3)
|
59
|
+
byebug (10.0.2)
|
60
|
+
capybara (2.2.1)
|
61
|
+
mime-types (>= 1.16)
|
62
|
+
nokogiri (>= 1.3.3)
|
63
|
+
rack (>= 1.0.0)
|
64
|
+
rack-test (>= 0.5.4)
|
65
|
+
xpath (~> 2.0)
|
66
|
+
capybara-screenshot (1.0.21)
|
67
|
+
capybara (>= 1.0, < 4)
|
68
|
+
launchy
|
69
|
+
childprocess (0.9.0)
|
70
|
+
ffi (~> 1.0, >= 1.0.11)
|
71
|
+
cliver (0.3.2)
|
72
|
+
coderay (1.1.2)
|
73
|
+
coffee-rails (4.2.2)
|
74
|
+
coffee-script (>= 2.2.0)
|
75
|
+
railties (>= 4.0.0)
|
76
|
+
coffee-script (2.4.1)
|
77
|
+
coffee-script-source
|
78
|
+
execjs
|
79
|
+
coffee-script-source (1.12.2)
|
80
|
+
concurrent-ruby (1.0.5)
|
81
|
+
crass (1.0.3)
|
82
|
+
diff-lcs (1.3)
|
83
|
+
docile (1.1.5)
|
84
|
+
erubi (1.7.0)
|
85
|
+
execjs (2.7.0)
|
86
|
+
faker (1.8.7)
|
87
|
+
i18n (>= 0.7)
|
88
|
+
ffi (1.9.23)
|
89
|
+
font-awesome-sass (4.4.0)
|
90
|
+
sass (>= 3.2)
|
91
|
+
globalid (0.4.1)
|
92
|
+
activesupport (>= 4.2.0)
|
93
|
+
haml (5.0.4)
|
94
|
+
temple (>= 0.8.0)
|
95
|
+
tilt
|
96
|
+
httparty (0.16.2)
|
97
|
+
multi_xml (>= 0.5.2)
|
98
|
+
i18n (0.9.1)
|
99
|
+
concurrent-ruby (~> 1.0)
|
100
|
+
inch (0.6.4)
|
101
|
+
pry
|
102
|
+
sparkr (>= 0.2.0)
|
103
|
+
term-ansicolor
|
104
|
+
yard (~> 0.8.7.5)
|
105
|
+
jquery-rails (4.3.3)
|
106
|
+
rails-dom-testing (>= 1, < 3)
|
107
|
+
railties (>= 4.2.0)
|
108
|
+
thor (>= 0.14, < 2.0)
|
109
|
+
jquery-ui-rails (5.0.5)
|
110
|
+
railties (>= 3.2.16)
|
111
|
+
jquery-ui-themes (0.0.12)
|
112
|
+
httparty
|
113
|
+
json (1.8.6)
|
114
|
+
kaminari (1.1.1)
|
115
|
+
activesupport (>= 4.1.0)
|
116
|
+
kaminari-actionview (= 1.1.1)
|
117
|
+
kaminari-activerecord (= 1.1.1)
|
118
|
+
kaminari-core (= 1.1.1)
|
119
|
+
kaminari-actionview (1.1.1)
|
120
|
+
actionview
|
121
|
+
kaminari-core (= 1.1.1)
|
122
|
+
kaminari-activerecord (1.1.1)
|
123
|
+
activerecord
|
124
|
+
kaminari-core (= 1.1.1)
|
125
|
+
kaminari-core (1.1.1)
|
126
|
+
launchy (2.4.3)
|
127
|
+
addressable (~> 2.3)
|
128
|
+
libv8 (3.16.14.19)
|
129
|
+
loofah (2.1.1)
|
130
|
+
crass (~> 1.0.2)
|
131
|
+
nokogiri (>= 1.5.9)
|
132
|
+
mail (2.7.1)
|
133
|
+
mini_mime (>= 0.1.1)
|
134
|
+
method_source (0.9.0)
|
135
|
+
mime-types (3.1)
|
136
|
+
mime-types-data (~> 3.2015)
|
137
|
+
mime-types-data (3.2016.0521)
|
138
|
+
mini_mime (1.0.1)
|
139
|
+
mini_portile2 (2.3.0)
|
140
|
+
minitest (5.11.1)
|
141
|
+
multi_json (1.13.1)
|
142
|
+
multi_xml (0.6.0)
|
143
|
+
nio4r (2.3.1)
|
144
|
+
nokogiri (1.8.1)
|
145
|
+
mini_portile2 (~> 2.3.0)
|
146
|
+
poltergeist (1.9.0)
|
147
|
+
capybara (~> 2.1)
|
148
|
+
cliver (~> 0.3.1)
|
149
|
+
multi_json (~> 1.0)
|
150
|
+
websocket-driver (>= 0.2.0)
|
151
|
+
pry (0.11.3)
|
152
|
+
coderay (~> 1.1.0)
|
153
|
+
method_source (~> 0.9.0)
|
154
|
+
public_suffix (3.0.2)
|
155
|
+
rack (2.0.3)
|
156
|
+
rack-test (0.8.2)
|
157
|
+
rack (>= 1.0, < 3)
|
158
|
+
rails (5.1.4)
|
159
|
+
actioncable (= 5.1.4)
|
160
|
+
actionmailer (= 5.1.4)
|
161
|
+
actionpack (= 5.1.4)
|
162
|
+
actionview (= 5.1.4)
|
163
|
+
activejob (= 5.1.4)
|
164
|
+
activemodel (= 5.1.4)
|
165
|
+
activerecord (= 5.1.4)
|
166
|
+
activesupport (= 5.1.4)
|
167
|
+
bundler (>= 1.3.0)
|
168
|
+
railties (= 5.1.4)
|
169
|
+
sprockets-rails (>= 2.0.0)
|
170
|
+
rails-dom-testing (2.0.3)
|
171
|
+
activesupport (>= 4.2.0)
|
172
|
+
nokogiri (>= 1.6)
|
173
|
+
rails-html-sanitizer (1.0.3)
|
174
|
+
loofah (~> 2.0)
|
175
|
+
railties (5.1.4)
|
176
|
+
actionpack (= 5.1.4)
|
177
|
+
activesupport (= 5.1.4)
|
178
|
+
method_source
|
179
|
+
rake (>= 0.8.7)
|
180
|
+
thor (>= 0.18.1, < 2.0)
|
181
|
+
rake (10.5.0)
|
182
|
+
rb-fsevent (0.10.3)
|
183
|
+
rb-inotify (0.9.10)
|
184
|
+
ffi (>= 0.5.0, < 2)
|
185
|
+
rdoc (4.2.2)
|
186
|
+
json (~> 1.4)
|
187
|
+
ref (2.0.0)
|
188
|
+
rspec (3.6.0)
|
189
|
+
rspec-core (~> 3.6.0)
|
190
|
+
rspec-expectations (~> 3.6.0)
|
191
|
+
rspec-mocks (~> 3.6.0)
|
192
|
+
rspec-core (3.6.0)
|
193
|
+
rspec-support (~> 3.6.0)
|
194
|
+
rspec-expectations (3.6.0)
|
195
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
196
|
+
rspec-support (~> 3.6.0)
|
197
|
+
rspec-mocks (3.6.0)
|
198
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
199
|
+
rspec-support (~> 3.6.0)
|
200
|
+
rspec-rails (3.6.1)
|
201
|
+
actionpack (>= 3.0)
|
202
|
+
activesupport (>= 3.0)
|
203
|
+
railties (>= 3.0)
|
204
|
+
rspec-core (~> 3.6.0)
|
205
|
+
rspec-expectations (~> 3.6.0)
|
206
|
+
rspec-mocks (~> 3.6.0)
|
207
|
+
rspec-support (~> 3.6.0)
|
208
|
+
rspec-support (3.6.0)
|
209
|
+
rubyzip (1.2.1)
|
210
|
+
sass (3.5.6)
|
211
|
+
sass-listen (~> 4.0.0)
|
212
|
+
sass-listen (4.0.0)
|
213
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
214
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
215
|
+
sass-rails (5.0.7)
|
216
|
+
railties (>= 4.0.0, < 6)
|
217
|
+
sass (~> 3.1)
|
218
|
+
sprockets (>= 2.8, < 4.0)
|
219
|
+
sprockets-rails (>= 2.0, < 4.0)
|
220
|
+
tilt (>= 1.1, < 3)
|
221
|
+
selenium-webdriver (2.51.0)
|
222
|
+
childprocess (~> 0.5)
|
223
|
+
multi_json (~> 1.0)
|
224
|
+
rubyzip (~> 1.0)
|
225
|
+
websocket (~> 1.0)
|
226
|
+
shoulda-matchers (2.8.0)
|
227
|
+
activesupport (>= 3.0.0)
|
228
|
+
simplecov (0.14.1)
|
229
|
+
docile (~> 1.1.0)
|
230
|
+
json (>= 1.8, < 3)
|
231
|
+
simplecov-html (~> 0.10.0)
|
232
|
+
simplecov-html (0.10.2)
|
233
|
+
sparkr (0.4.1)
|
234
|
+
sprockets (3.7.1)
|
235
|
+
concurrent-ruby (~> 1.0)
|
236
|
+
rack (> 1, < 3)
|
237
|
+
sprockets-rails (3.2.1)
|
238
|
+
actionpack (>= 4.0)
|
239
|
+
activesupport (>= 4.0)
|
240
|
+
sprockets (>= 3.0.0)
|
241
|
+
sqlite3 (1.3.13)
|
242
|
+
temple (0.8.0)
|
243
|
+
term-ansicolor (1.6.0)
|
244
|
+
tins (~> 1.0)
|
245
|
+
therubyracer (0.12.3)
|
246
|
+
libv8 (~> 3.16.14.15)
|
247
|
+
ref
|
248
|
+
thor (0.19.4)
|
249
|
+
thread_safe (0.3.6)
|
250
|
+
tilt (2.0.8)
|
251
|
+
tins (1.16.3)
|
252
|
+
turbolinks (5.1.1)
|
253
|
+
turbolinks-source (~> 5.1)
|
254
|
+
turbolinks-source (5.1.0)
|
255
|
+
tzinfo (1.2.4)
|
256
|
+
thread_safe (~> 0.1)
|
257
|
+
websocket (1.2.5)
|
258
|
+
websocket-driver (0.6.5)
|
259
|
+
websocket-extensions (>= 0.1.0)
|
260
|
+
websocket-extensions (0.1.3)
|
261
|
+
xpath (2.1.0)
|
262
|
+
nokogiri (~> 1.3)
|
263
|
+
yard (0.8.7.6)
|
264
|
+
|
265
|
+
PLATFORMS
|
266
|
+
ruby
|
267
|
+
|
268
|
+
DEPENDENCIES
|
269
|
+
appraisal
|
270
|
+
bootstrap-sass (= 3.1.1.1)
|
271
|
+
bundler (~> 1.3)
|
272
|
+
byebug
|
273
|
+
capybara (~> 2.2.0)
|
274
|
+
capybara-screenshot (~> 1.0.11)
|
275
|
+
coderay (~> 1.1.0)
|
276
|
+
faker (~> 1.8.7)
|
277
|
+
font-awesome-sass (= 4.4.0)
|
278
|
+
haml (~> 5.0.4)
|
279
|
+
inch (~> 0.6.4)
|
280
|
+
jquery-rails (~> 4.3.3)
|
281
|
+
jquery-ui-rails (~> 5.0.5)
|
282
|
+
jquery-ui-themes (~> 0.0.11)
|
283
|
+
poltergeist (~> 1.9.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.16.1
|