Flowdock
method

boolean

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Convert
boolean(str) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/xmlrpc/parser.rb, line 74
    def self.boolean(str)
      case str
      when "0" then false
      when "1" then true
      else
        raise "RPC-value of type boolean is wrong"
      end
    end
Register or log in to add new notes.