Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
administrate / lib / administrate / field / boolean.rb
Size: Mime:
require_relative "base"

module Administrate
  module Field
    class Boolean < Base
      def to_s
        if data.nil?
          "-"
        else
          data.to_s
        end
      end
    end
  end
end