Class: Iz::Binary

Inherits:
Object
  • Object
show all
Defined in:
lib/iz/binary.rb

Constant Summary collapse

REGEX =
/^[01]+$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(binary) ⇒ Binary

Returns a new instance of Binary.



7
8
9
# File 'lib/iz/binary.rb', line 7

def initialize(binary)
  self.value = binary
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



5
6
7
# File 'lib/iz/binary.rb', line 5

def value
  @value
end

Class Method Details

.is_binary?(value) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
18
# File 'lib/iz/binary.rb', line 15

def self.is_binary?(value)
  return false unless value
  value.to_s =~ REGEX
end

Instance Method Details

#valid?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/iz/binary.rb', line 11

def valid?
  !!Iz::Binary.is_binary?(value)
end