pushtype/push_type

View on GitHub
core/lib/push_type/primitives/boolean_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PushType
  module Primitives
    class BooleanType < Base

      def to_json
        return nil if value.nil?
        value.to_bool
      end

    end
  end
end