Module: Blacklight::Deprecations::EngineConfiguration
- Defined in:
- lib/blacklight/deprecations/engine_configuration.rb
Class Method Summary collapse
-
.deprecate_in(object) ⇒ Object
rubocop:enable Style/RedundantSelf, Style/HashSyntax.
Instance Method Summary collapse
- #bookmarks_http_method ⇒ Object deprecated Deprecated.
- #bookmarks_http_method=(val) ⇒ Object deprecated Deprecated.
- #email_regexp ⇒ Object deprecated Deprecated.
- #email_regexp=(val) ⇒ Object deprecated Deprecated.
- #facet_missing_param ⇒ Object deprecated Deprecated.
- #facet_missing_param=(val) ⇒ Object deprecated Deprecated.
- #sms_mappings ⇒ Object deprecated Deprecated.
- #sms_mappings=(val) ⇒ Object deprecated Deprecated.
Class Method Details
.deprecate_in(object) ⇒ Object
rubocop:enable Style/RedundantSelf, Style/HashSyntax
56 57 58 59 60 61 62 63 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 56 def self.deprecate_in(object) class << object extend Deprecation self.deprecation_horizon = 'blacklight 8.0' include Blacklight::Deprecations::EngineConfiguration end end |
Instance Method Details
#bookmarks_http_method ⇒ Object
Deprecated.
rubocop:disable Style/RedundantSelf, Style/HashSyntax
8 9 10 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 8 def bookmarks_http_method self.blacklight.bookmarks_http_method end |
#bookmarks_http_method=(val) ⇒ Object
Deprecated.
14 15 16 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 14 def bookmarks_http_method=(val) self.blacklight.bookmarks_http_method = val end |
#email_regexp ⇒ Object
Deprecated.
20 21 22 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 20 def email_regexp self.blacklight.email_regexp end |
#email_regexp=(val) ⇒ Object
Deprecated.
26 27 28 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 26 def email_regexp=(val) self.blacklight.email_regexp = val end |
#facet_missing_param ⇒ Object
Deprecated.
32 33 34 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 32 def facet_missing_param self.blacklight.facet_missing_param end |
#facet_missing_param=(val) ⇒ Object
Deprecated.
38 39 40 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 38 def facet_missing_param=(val) self.blacklight.facet_missing_param = val end |
#sms_mappings ⇒ Object
Deprecated.
44 45 46 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 44 def sms_mappings self.blacklight.sms_mappings end |
#sms_mappings=(val) ⇒ Object
Deprecated.
50 51 52 |
# File 'lib/blacklight/deprecations/engine_configuration.rb', line 50 def sms_mappings=(val) self.blacklight.sms_mappings = val end |