class CtGov::Investigator

Public Class Methods

new(raw_investigator) click to toggle source
# File lib/ct_gov/investigator.rb, line 4
def initialize(raw_investigator)
  @raw_investigator = raw_investigator
end

Public Instance Methods

affiliation() click to toggle source
# File lib/ct_gov/investigator.rb, line 8
def affiliation
  @raw_investigator['affiliation']
end
name() click to toggle source
# File lib/ct_gov/investigator.rb, line 12
def name
  @raw_investigator['last_name']
end
role() click to toggle source
# File lib/ct_gov/investigator.rb, line 16
def role
  @raw_investigator['role']
end