105fc46774
* FEATURE: added liquid based templating * templating should be false by default * added rspec tests for mapper templating * wrapped templating tests in a context block * added a custom liquid filter and tests * ran rubocop on changed files * DEV: minor variable and naming changes * minor code formatting * improved overall structure and tightened spec for custom filter * added a spec template: false * define method at the top of spec file * naming convention * removed extra space
11 Zeilen
210 B
Ruby
11 Zeilen
210 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::CustomWizard
|
|
module LiquidFilter
|
|
module FirstNonEmpty
|
|
def first_non_empty(*multiple)
|
|
multiple.find { |var| var.present? }
|
|
end
|
|
end
|
|
end
|
|
end
|