Method: FancyCount::Configuration.adapter=
- Defined in:
- lib/fancy_count/configuration.rb
.adapter=(value) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/fancy_count/configuration.rb', line 17 def self.adapter=(value) if ADAPTER_CLASSES.key?(value.to_sym) super(value) else raise_missing_adapter_error(value) end end |