class Classifoclc::Author
Author
of a Classifoclc::Work
Attributes
lc[R]
The author's Library of Congress id number @return [String]
name[R]
The author's name @return [String]
viaf[R]
The author's VIAF number @return [String]
Public Class Methods
new(name, lc, viaf)
click to toggle source
# File lib/classifoclc/author.rb, line 15 def initialize(name, lc, viaf) @name = name @lc = lc @viaf = viaf end