DEBSOURCES
Skip Quicknav
sources / ruby-flipper / 0.13.0-3 / lib / flipper / types / boolean.rb
123456789
module Flipper module Types class Boolean < Type def initialize(value = nil) @value = value.nil? ? true : Typecast.to_boolean(value) end end end end