Class: Exlibris::Aleph::Table::Reader::Base
- Inherits:
-
Object
- Object
- Exlibris::Aleph::Table::Reader::Base
- Defined in:
- lib/exlibris/aleph/table/reader/base.rb
Direct Known Subclasses
Collections, ItemCirculationPolicies, ItemDisplayMasks, PatronCirculationPolicies, PatronStatuses, SubLibraries
Instance Attribute Summary collapse
-
#admin_library ⇒ Object
readonly
Returns the value of attribute admin_library.
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
Instance Method Summary collapse
- #all ⇒ Object
-
#initialize(admin_library, filename) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(admin_library, filename) ⇒ Base
Returns a new instance of Base.
8 9 10 11 |
# File 'lib/exlibris/aleph/table/reader/base.rb', line 8 def initialize(admin_library, filename) @admin_library = admin_library @filename = filename end |
Instance Attribute Details
#admin_library ⇒ Object (readonly)
Returns the value of attribute admin_library.
6 7 8 |
# File 'lib/exlibris/aleph/table/reader/base.rb', line 6 def admin_library @admin_library end |
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
6 7 8 |
# File 'lib/exlibris/aleph/table/reader/base.rb', line 6 def filename @filename end |
Instance Method Details
#all ⇒ Object
13 14 15 |
# File 'lib/exlibris/aleph/table/reader/base.rb', line 13 def all raise RuntimeError.new('Should be implmented in sub classes') end |