Module: Flipper::Exporter
Constant Summary collapse
- FORMATTERS =
{ json: { 1 => Flipper::Exporters::Json::V1, } }.freeze
Instance Method Summary collapse
Instance Method Details
#build(format: :json, version: 1) ⇒ Object
13 14 15 |
# File 'lib/flipper/exporter.rb', line 13 def build(format: :json, version: 1) FORMATTERS.fetch(format).fetch(version).new end |