blacklight 9.0.0 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.env +3 -3
- data/.github/matrix.json +12 -18
- data/.github/workflows/lint.yml +1 -1
- data/.github/workflows/test.yml +4 -3
- data/.rubocop.yml +72 -7
- data/.rubocop_todo.yml +142 -268
- data/Gemfile +1 -1
- data/README.md +2 -9
- data/VERSION +1 -1
- data/app/assets/builds/blacklight.css +37 -23
- data/app/assets/images/blacklight/logo-dark.svg +184 -0
- data/app/assets/images/blacklight/logo.svg +184 -0
- data/app/assets/javascripts/blacklight/blacklight.esm.js +128 -45
- data/app/assets/javascripts/blacklight/blacklight.esm.js.map +1 -1
- data/app/assets/javascripts/blacklight/blacklight.js +128 -45
- data/app/assets/javascripts/blacklight/blacklight.js.map +1 -1
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +1 -1
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +17 -0
- data/app/assets/stylesheets/blacklight/_constraints.scss +2 -2
- data/app/assets/stylesheets/blacklight/_facets.scss +14 -10
- data/app/assets/stylesheets/blacklight/_header.scss +0 -4
- data/app/assets/stylesheets/blacklight/blacklight_defaults.scss +5 -9
- data/app/components/blacklight/facets/inclusive_constraint_component.html.erb +1 -1
- data/app/components/blacklight/icons/checkmark_component.rb +16 -0
- data/app/components/blacklight/icons/circle_half_component.rb +16 -0
- data/app/components/blacklight/icons/moon_stars_component.rb +17 -0
- data/app/components/blacklight/icons/sun_component.rb +16 -0
- data/app/components/blacklight/metadata_field_component.rb +1 -1
- data/app/components/blacklight/search_navbar_component.html.erb +1 -1
- data/app/components/blacklight/theme_switcher_component.html.erb +31 -0
- data/app/components/blacklight/theme_switcher_component.rb +6 -0
- data/app/components/blacklight/top_navbar_component.html.erb +1 -1
- data/app/controllers/concerns/blacklight/bookmarks.rb +8 -14
- data/app/controllers/concerns/blacklight/catalog.rb +9 -10
- data/app/controllers/concerns/blacklight/controller.rb +54 -11
- data/app/controllers/concerns/blacklight/guest_user.rb +51 -0
- data/app/controllers/concerns/blacklight/search_context.rb +1 -1
- data/app/controllers/concerns/blacklight/search_history.rb +3 -1
- data/app/controllers/concerns/blacklight/searchable.rb +18 -0
- data/app/helpers/blacklight/layout_helper_behavior.rb +7 -0
- data/app/javascript/blacklight-frontend/color_theme_switcher.js +85 -0
- data/app/javascript/blacklight-frontend/index.js +2 -0
- data/app/models/concerns/blacklight/document/dublin_core.rb +2 -2
- data/app/models/concerns/blacklight/document.rb +1 -1
- data/app/models/concerns/blacklight/user.rb +36 -0
- data/app/presenters/blacklight/field_presenter.rb +1 -1
- data/app/presenters/blacklight/rendering/microdata.rb +1 -0
- data/app/services/blacklight/bookmarks_search_builder.rb +4 -4
- data/app/services/blacklight/search_service.rb +46 -33
- data/app/values/blacklight/types.rb +1 -1
- data/app/views/catalog/_email_form.html.erb +3 -3
- data/app/views/catalog/_home_text.html.erb +1 -1
- data/app/views/catalog/_sms_form.html.erb +4 -4
- data/app/views/catalog/index.rss.builder +4 -4
- data/app/views/catalog/opensearch.json.jbuilder +3 -0
- data/app/views/catalog/opensearch.xml.builder +2 -2
- data/app/views/layouts/blacklight/base.html.erb +13 -1
- data/app/views/shared/_user_util_links.html.erb +18 -5
- data/blacklight.gemspec +3 -3
- data/config/locales/blacklight.ar.yml +5 -0
- data/config/locales/blacklight.ca.yml +5 -0
- data/config/locales/blacklight.de.yml +6 -2
- data/config/locales/blacklight.en.yml +5 -0
- data/config/locales/blacklight.es.yml +5 -0
- data/config/locales/blacklight.fr.yml +5 -0
- data/config/locales/blacklight.hu.yml +5 -0
- data/config/locales/blacklight.it.yml +6 -2
- data/config/locales/blacklight.nl.yml +5 -0
- data/config/locales/blacklight.pt-BR.yml +6 -2
- data/config/locales/blacklight.sq.yml +5 -0
- data/config/locales/blacklight.zh.yml +5 -0
- data/lib/blacklight/component.rb +1 -1
- data/lib/blacklight/configuration/action_config_map_entry.rb +31 -0
- data/lib/blacklight/configuration/display_field.rb +1 -0
- data/lib/blacklight/configuration/field.rb +6 -6
- data/lib/blacklight/configuration/fields.rb +1 -1
- data/lib/blacklight/configuration/sort_field.rb +2 -2
- data/lib/blacklight/configuration.rb +30 -19
- data/lib/blacklight/parameters.rb +1 -1
- data/lib/blacklight/search_builder.rb +58 -19
- data/lib/blacklight/search_state.rb +4 -0
- data/lib/blacklight/solr/request.rb +8 -1
- data/lib/blacklight/solr/response/group_response.rb +1 -1
- data/lib/blacklight/solr/response/spelling.rb +8 -8
- data/lib/blacklight/solr/response.rb +2 -21
- data/lib/blacklight/solr/search_builder_behavior.rb +3 -9
- data/lib/blacklight.rb +2 -2
- data/lib/generators/blacklight/assets/importmap_generator.rb +2 -2
- data/lib/generators/blacklight/assets_generator.rb +1 -1
- data/lib/generators/blacklight/controller_generator.rb +1 -1
- data/lib/generators/blacklight/document_generator.rb +1 -1
- data/lib/generators/blacklight/install_generator.rb +6 -4
- data/lib/generators/blacklight/models_generator.rb +1 -1
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/solr_generator.rb +1 -1
- data/lib/generators/blacklight/templates/catalog_controller.rb +20 -1
- data/lib/generators/blacklight/templates/solr/conf/schema.xml +264 -178
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +6 -14
- data/lib/generators/blacklight/test_support_generator.rb +1 -1
- data/lib/generators/blacklight/user_generator.rb +66 -5
- data/lib/railties/blacklight.rake +4 -4
- data/package.json +2 -2
- data/spec/components/blacklight/document/action_component_spec.rb +1 -1
- data/spec/components/blacklight/document/group_component_spec.rb +1 -1
- data/spec/components/blacklight/document_component_spec.rb +9 -9
- data/spec/components/blacklight/facet_component_spec.rb +2 -2
- data/spec/components/blacklight/facets/index_navigation_component_spec.rb +1 -2
- data/spec/components/blacklight/facets/list_component_spec.rb +1 -1
- data/spec/components/blacklight/facets/suggest_component_spec.rb +1 -2
- data/spec/components/blacklight/metadata_field_component_spec.rb +26 -0
- data/spec/components/blacklight/skip_link_component_spec.rb +2 -2
- data/spec/controllers/application_controller_spec.rb +71 -0
- data/spec/controllers/bookmarks_controller_spec.rb +18 -5
- data/spec/controllers/catalog_controller_spec.rb +7 -5
- data/spec/features/advanced_search_spec.rb +29 -16
- data/spec/features/alternate_controller_spec.rb +4 -4
- data/spec/features/axe_spec.rb +34 -22
- data/spec/features/bookmarks_spec.rb +13 -13
- data/spec/features/dark_mode_spec.rb +42 -0
- data/spec/features/did_you_mean_spec.rb +27 -27
- data/spec/features/facet_missing_spec.rb +3 -3
- data/spec/features/record_view_spec.rb +14 -14
- data/spec/features/search_context_spec.rb +8 -8
- data/spec/features/search_filters_spec.rb +16 -16
- data/spec/features/search_formats_spec.rb +2 -2
- data/spec/features/search_history_spec.rb +11 -11
- data/spec/features/search_pagination_spec.rb +17 -17
- data/spec/features/search_results_spec.rb +3 -3
- data/spec/features/search_sort_spec.rb +4 -4
- data/spec/features/search_spec.rb +20 -20
- data/spec/helpers/blacklight/url_helper_behavior_spec.rb +15 -15
- data/spec/helpers/blacklight_helper_spec.rb +1 -1
- data/spec/helpers/catalog_helper_spec.rb +7 -7
- data/spec/integration/generators/blacklight/user_generator_spec.rb +60 -0
- data/spec/lib/blacklight/search_state/pivot_filter_field_spec.rb +1 -1
- data/spec/models/blacklight/configurable_spec.rb +1 -1
- data/spec/models/blacklight/configuration_spec.rb +0 -19
- data/spec/models/blacklight/document/dublin_core_spec.rb +2 -2
- data/spec/models/blacklight/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/search_builder_spec.rb +15 -3
- data/spec/models/blacklight/solr/repository_spec.rb +10 -2
- data/spec/models/blacklight/solr/search_builder_behavior_spec.rb +3 -5
- data/spec/models/blacklight/user_spec.rb +32 -5
- data/spec/models/bookmark_spec.rb +1 -1
- data/spec/models/record_mailer_spec.rb +8 -8
- data/spec/models/search_spec.rb +1 -1
- data/spec/models/solr_document_spec.rb +4 -0
- data/spec/presenters/blacklight/index_presenter_spec.rb +1 -0
- data/spec/presenters/blacklight/rendering/pipeline_spec.rb +1 -0
- data/spec/presenters/blacklight/show_presenter_spec.rb +1 -0
- data/spec/presenters/blacklight/thumbnail_presenter_spec.rb +1 -0
- data/spec/services/blacklight/search_service_spec.rb +7 -7
- data/spec/spec_helper.rb +3 -12
- data/spec/support/features/session_helpers.rb +13 -4
- data/spec/support/features/turbo_helpers.rb +13 -0
- data/spec/support/features.rb +2 -0
- data/spec/support/user_helpers.rb +24 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/catalog/_document.html.erb_spec.rb +4 -4
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +2 -2
- data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +5 -5
- data/spec/views/catalog/index.html.erb_spec.rb +2 -2
- data/spec/views/catalog/show.html.erb_spec.rb +3 -4
- data/spec/views/shared/_user_util_links.html.erb_spec.rb +56 -0
- data/template.demo.rb +2 -1
- metadata +30 -22
- data/.hound.yml +0 -4
- data/.jshintrc +0 -22
- data/app/assets/images/blacklight/logo.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2b7ef7b0e6e3924f62386fe3616e459ffc84875ceb3f9a00b225f765de60c87
|
|
4
|
+
data.tar.gz: b4b9154df43849054ab080a1e904a38aae03e0fdf35cd0d4d6b5f3c2256ea4e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22c974165abd744e806c376dfb91700868b821e461bc8229b32318192413f09e74b6e6ba6ede7640cc42b55806eb5c7d7ed5aa462b1d272caf87fb77c5508d0e
|
|
7
|
+
data.tar.gz: abad542f7ddd3ac0ecab4d7de65825a29815de79ee30ed4318bbcc09ff9e24ceae22310526d7849503bdff0ac45fe16ad60a131d23503f2bf29042f9cbd4ce38
|
data/.env
CHANGED
data/.github/matrix.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ruby": ["3.4"],
|
|
3
|
-
"rails_version": ["8.1.
|
|
3
|
+
"rails_version": ["8.1.3"],
|
|
4
4
|
"bootstrap_version": [null],
|
|
5
|
+
"bundler_version": ["2.7.2"],
|
|
5
6
|
"view_component_version": ["~> 4.0"],
|
|
6
7
|
"api": [null],
|
|
7
8
|
"additional_engine_cart_rails_options": ["--css=bootstrap"],
|
|
8
9
|
"additional_name": [""],
|
|
9
10
|
"include": [
|
|
10
11
|
{
|
|
11
|
-
"ruby": "
|
|
12
|
-
"rails_version": "8.1.
|
|
13
|
-
"additional_engine_cart_rails_options": "--css=bootstrap
|
|
14
|
-
"additional_name": "|
|
|
12
|
+
"ruby": "4.0",
|
|
13
|
+
"rails_version": "8.1.3",
|
|
14
|
+
"additional_engine_cart_rails_options": "--css=bootstrap",
|
|
15
|
+
"additional_name": "| Ruby 4"
|
|
15
16
|
},
|
|
16
17
|
{
|
|
17
18
|
"ruby": "3.4",
|
|
18
|
-
"rails_version": "8.
|
|
19
|
-
"additional_engine_cart_rails_options": "--css=bootstrap",
|
|
20
|
-
"
|
|
21
|
-
"additional_name": "ViewComponent 3"
|
|
19
|
+
"rails_version": "8.1.3",
|
|
20
|
+
"additional_engine_cart_rails_options": "--css=bootstrap --js=esbuild",
|
|
21
|
+
"additional_name": "| esbuild"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"ruby": "3.3",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"additional_name": "| esbuild"
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"ruby": "3.
|
|
36
|
+
"ruby": "3.3",
|
|
37
37
|
"rails_version": "8.0.4",
|
|
38
|
-
"solr_version": "
|
|
39
|
-
"additional_name": "| Solr
|
|
38
|
+
"solr_version": "9",
|
|
39
|
+
"additional_name": "| Solr 9 and Ruby 3.3"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"ruby": "3.4",
|
|
@@ -44,12 +44,6 @@
|
|
|
44
44
|
"api": "true",
|
|
45
45
|
"additional_engine_cart_rails_options": "--api --skip-yarn",
|
|
46
46
|
"additional_name": "| API"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"ruby": "3.4",
|
|
50
|
-
"rails_version": "7.2.3",
|
|
51
|
-
"additional_engine_cart_rails_options": "-a propshaft --css=bootstrap --js=esbuild",
|
|
52
|
-
"additional_name": "| Rails 7.2 + Propshaft, esbuild"
|
|
53
47
|
}
|
|
54
48
|
]
|
|
55
49
|
}
|
data/.github/workflows/lint.yml
CHANGED
data/.github/workflows/test.yml
CHANGED
|
@@ -4,7 +4,7 @@ on:
|
|
|
4
4
|
ref:
|
|
5
5
|
required: false
|
|
6
6
|
type: string
|
|
7
|
-
default:
|
|
7
|
+
default: ""
|
|
8
8
|
description: The branch or reference to run the workflow against
|
|
9
9
|
jobs:
|
|
10
10
|
set_matrix:
|
|
@@ -35,7 +35,8 @@ jobs:
|
|
|
35
35
|
VIEW_COMPONENT_VERSION: ${{ matrix.view_component_version }}
|
|
36
36
|
BOOTSTRAP_VERSION: ${{ matrix.bootstrap_version }}
|
|
37
37
|
BLACKLIGHT_API_TEST: ${{ matrix.api }}
|
|
38
|
-
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-kamal --skip-solid --skip-coffee --skip-test ${{ matrix.additional_engine_cart_rails_options }}"
|
|
38
|
+
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-kamal --skip-thruster --skip-solid --skip-coffee --skip-test ${{ matrix.additional_engine_cart_rails_options }}"
|
|
39
|
+
BUNDLER_VERSION: ${{ matrix.bundler_version || '2.7.2' }}
|
|
39
40
|
steps:
|
|
40
41
|
- uses: actions/checkout@v4
|
|
41
42
|
with:
|
|
@@ -43,8 +44,8 @@ jobs:
|
|
|
43
44
|
- name: Set up Ruby
|
|
44
45
|
uses: ruby/setup-ruby@v1
|
|
45
46
|
with:
|
|
46
|
-
bundler: "latest"
|
|
47
47
|
ruby-version: ${{ matrix.ruby }}
|
|
48
|
+
bundler: ${{ matrix.bundler_version || '2.7.2' }}
|
|
48
49
|
- name: Change permissions
|
|
49
50
|
run: "chmod -f -R o-w /opt/hostedtoolcache/Ruby/3.2.5/x64/lib/ruby/gems/3.2.0/gems | :"
|
|
50
51
|
- name: Install dependencies
|
data/.rubocop.yml
CHANGED
|
@@ -10,8 +10,8 @@ inherit_from:
|
|
|
10
10
|
|
|
11
11
|
AllCops:
|
|
12
12
|
DisplayCopNames: true
|
|
13
|
-
TargetRubyVersion: 3.
|
|
14
|
-
TargetRailsVersion: 7.
|
|
13
|
+
TargetRubyVersion: 3.3
|
|
14
|
+
TargetRailsVersion: 7.2
|
|
15
15
|
Exclude:
|
|
16
16
|
- "lib/generators/blacklight/templates/**/*"
|
|
17
17
|
- "blacklight.gemspec"
|
|
@@ -89,6 +89,9 @@ Rails/ApplicationMailer:
|
|
|
89
89
|
Style/AccessModifierDeclarations:
|
|
90
90
|
Enabled: false
|
|
91
91
|
|
|
92
|
+
Style/FormatStringToken:
|
|
93
|
+
EnforcedStyle: template
|
|
94
|
+
|
|
92
95
|
Style/MissingRespondToMissing:
|
|
93
96
|
Exclude:
|
|
94
97
|
- "lib/blacklight/nested_open_struct_with_hash_access.rb"
|
|
@@ -457,11 +460,11 @@ Style/SuperWithArgsParentheses: # new in 1.58
|
|
|
457
460
|
Enabled: true
|
|
458
461
|
Style/YAMLFileRead: # new in 1.53
|
|
459
462
|
Enabled: true
|
|
460
|
-
Capybara/
|
|
463
|
+
Capybara/AssertStyle: # new in 2.17
|
|
461
464
|
Enabled: true
|
|
462
|
-
Capybara/MatchStyle:
|
|
465
|
+
Capybara/RSpec/MatchStyle:
|
|
463
466
|
Enabled: true
|
|
464
|
-
Capybara/NegationMatcher: # new in 2.14
|
|
467
|
+
Capybara/RSpec/NegationMatcher: # new in 2.14
|
|
465
468
|
Enabled: true
|
|
466
469
|
Exclude:
|
|
467
470
|
- "spec/models/**/*"
|
|
@@ -471,7 +474,7 @@ Capybara/SpecificActions: # new in 2.14
|
|
|
471
474
|
Enabled: true
|
|
472
475
|
Capybara/SpecificFinders: # new in 2.13
|
|
473
476
|
Enabled: true
|
|
474
|
-
Capybara/SpecificMatcher: # new in 2.12
|
|
477
|
+
Capybara/RSpec/SpecificMatcher: # new in 2.12
|
|
475
478
|
Enabled: true
|
|
476
479
|
Capybara/RSpec/HaveSelector: # new in 2.19
|
|
477
480
|
Enabled: true
|
|
@@ -649,7 +652,7 @@ Style/RedundantFormat: # new in 1.72
|
|
|
649
652
|
Enabled: true
|
|
650
653
|
Capybara/FindAllFirst: # new in 2.22
|
|
651
654
|
Enabled: true
|
|
652
|
-
Capybara/NegationMatcherAfterVisit: # new in 2.22
|
|
655
|
+
Capybara/RSpec/NegationMatcherAfterVisit: # new in 2.22
|
|
653
656
|
Enabled: true
|
|
654
657
|
RSpec/IncludeExamples: # new in 3.6
|
|
655
658
|
Enabled: true
|
|
@@ -663,3 +666,65 @@ Style/EmptyStringInsideInterpolation: # new in 1.76
|
|
|
663
666
|
Enabled: true
|
|
664
667
|
Style/RedundantArrayFlatten: # new in 1.76
|
|
665
668
|
Enabled: true
|
|
669
|
+
Gemspec/AttributeAssignment: # new in 1.77
|
|
670
|
+
Enabled: true
|
|
671
|
+
Layout/EmptyLinesAfterModuleInclusion: # new in 1.79
|
|
672
|
+
Enabled: true
|
|
673
|
+
Lint/DataDefineOverride: # new in 1.85
|
|
674
|
+
Enabled: true
|
|
675
|
+
Lint/UnreachablePatternBranch: # new in 1.85
|
|
676
|
+
Enabled: true
|
|
677
|
+
Style/ArrayIntersectWithSingleElement: # new in 1.81
|
|
678
|
+
Enabled: true
|
|
679
|
+
Style/CollectionQuerying: # new in 1.77
|
|
680
|
+
Enabled: true
|
|
681
|
+
Style/EmptyClassDefinition: # new in 1.84
|
|
682
|
+
Enabled: true
|
|
683
|
+
Style/FileOpen: # new in 1.85
|
|
684
|
+
Enabled: true
|
|
685
|
+
Style/MapJoin: # new in 1.85
|
|
686
|
+
Enabled: true
|
|
687
|
+
Style/ModuleMemberExistenceCheck: # new in 1.82
|
|
688
|
+
Enabled: true
|
|
689
|
+
Style/NegativeArrayIndex: # new in 1.84
|
|
690
|
+
Enabled: true
|
|
691
|
+
Style/OneClassPerFile: # new in 1.85
|
|
692
|
+
Enabled: true
|
|
693
|
+
Style/PartitionInsteadOfDoubleSelect: # new in 1.85
|
|
694
|
+
Enabled: true
|
|
695
|
+
Style/PredicateWithKind: # new in 1.85
|
|
696
|
+
Enabled: true
|
|
697
|
+
Style/ReduceToHash: # new in 1.85
|
|
698
|
+
Enabled: true
|
|
699
|
+
Style/RedundantMinMaxBy: # new in 1.85
|
|
700
|
+
Enabled: true
|
|
701
|
+
Style/ReverseFind: # new in 1.84
|
|
702
|
+
Enabled: true
|
|
703
|
+
Style/SelectByKind: # new in 1.85
|
|
704
|
+
Enabled: true
|
|
705
|
+
Style/SelectByRange: # new in 1.85
|
|
706
|
+
Enabled: true
|
|
707
|
+
Style/TallyMethod: # new in 1.85
|
|
708
|
+
Enabled: true
|
|
709
|
+
Capybara/RSpec/CurrentPathExpectation: # new in 1.18
|
|
710
|
+
Enabled: true
|
|
711
|
+
Capybara/RSpec/HaveContent: # new in 2.23
|
|
712
|
+
Enabled: true
|
|
713
|
+
Capybara/RSpec/VisibilityMatcher: # new in 1.39
|
|
714
|
+
Enabled: true
|
|
715
|
+
RSpec/LeakyLocalVariable: # new in 3.8
|
|
716
|
+
Enabled: true
|
|
717
|
+
RSpec/Output: # new in 3.9
|
|
718
|
+
Enabled: true
|
|
719
|
+
RSpecRails/HttpStatusNameConsistency: # new in 2.32
|
|
720
|
+
Enabled: true
|
|
721
|
+
Rails/FindByOrAssignmentMemoization: # new in 2.33
|
|
722
|
+
Enabled: true
|
|
723
|
+
Rails/OrderArguments: # new in 2.33
|
|
724
|
+
Enabled: true
|
|
725
|
+
Rails/RedirectBackOrTo: # new in 2.34
|
|
726
|
+
Enabled: true
|
|
727
|
+
RSpec/DiscardedMatcher: # new in 3.10
|
|
728
|
+
Enabled: true
|
|
729
|
+
RSpec/MatchWithSimpleRegex: # new in 3.10
|
|
730
|
+
Enabled: true
|