Sha256: f97afb3c24d69ed0857585ef0e7028bc452764b63dbb28ae36ee170d8b6c92d2

Contents?: true

Size: 143 Bytes

Versions: 6

Compression:

Stored size: 143 Bytes

Contents

class TrueClass
  
  def implies(x=nil)
    block_given? ? yield : x 
  end
  
end

class FalseClass
  
  def implies(x)
    true
  end
  
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
hobo-support-0.1 lib/hobosupport/implies.rb
hobosupport-0.1 lib/hobosupport/implies.rb
hobosupport-0.2 lib/hobosupport/implies.rb
hobosupport-0.7.3.99 lib/hobosupport/implies.rb
hobosupport-0.7.4 lib/hobosupport/implies.rb
hobosupport-0.7.5 lib/hobosupport/implies.rb