autotelik/datashift

View on GitHub
lib/datashift/core_ext/to_b.rb

Summary

Maintainability
A
0 mins
Test Coverage

Object.class_eval do
  def to_b
    case self
      when true, false then self
      when nil then false
      else
        to_i != 0
    end
  end
end