Class: Codabel::Type::Duplicate
- Inherits:
-
Codabel::Type
- Object
- Codabel::Type
- Codabel::Type::Duplicate
- Defined in:
- lib/codabel/type/duplicate.rb
Instance Method Summary collapse
Methods inherited from Codabel::Type
Instance Method Details
#to_coda(value, length) ⇒ Object
4 5 6 7 |
# File 'lib/codabel/type/duplicate.rb', line 4 def to_coda(value, length) str = value ? 'D' : ' ' str.rjust(length, ' ') end |