Class: Iz::Binary
- Inherits:
-
Object
- Object
- Iz::Binary
- Defined in:
- lib/iz/binary.rb
Constant Summary collapse
- REGEX =
/^[01]+$/
Instance Attribute Summary collapse
-
#value ⇒ Object
Returns the value of attribute value.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(binary) ⇒ Binary
constructor
A new instance of Binary.
- #valid? ⇒ Boolean
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
#value ⇒ Object
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
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
11 12 13 |
# File 'lib/iz/binary.rb', line 11 def valid? !!Iz::Binary.is_binary?(value) end |