File: boolean.rb

package info (click to toggle)
ruby-buff-extensions 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 212 kB
  • sloc: ruby: 506; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 129 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
module Buff
  module Boolean; end
end

class TrueClass
  include Buff::Boolean
end

class FalseClass
  include Buff::Boolean
end