Class: FalseClass

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/zkt_client/monky_patcher/false.rb

Overview

Extends the FalseClass with additional methods

Instance Method Summary collapse

Methods included from Base

#present?

Instance Method Details

#blank?Boolean

Checks if the object is blank (always true for FalseClass)

Returns:

  • (Boolean)

    true, since false is considered blank



12
13
14
# File 'lib/zkt_client/monky_patcher/false.rb', line 12

def blank?
  true
end