Sha256: ac18036e626169ec2d703cf54acdaaeaec14f2bc84a00492f5f27a64fc982f3d
Contents?: true
Size: 1.03 KB
Versions: 179
Compression:
Stored size: 1.03 KB
Contents
module Person___module attr_accessor :names def isValidPerson___module return case when names == nil : false else true end end end module Organization___module attr_accessor :name def isValidOrganization___module return case when name == nil : false else true end end end module Personorganizationrelationship___module attr_accessor :the_person attr_accessor :the_organization attr_accessor :start_date attr_accessor :end_date def isValidPersonorganizationrelationship___module return case when the_person == nil : false when the_organization == nil : false when start_date == nil : false when end_date == nil : false else true end end end module Employment___module attr_accessor :job_title attr_accessor :ended_by attr_accessor :employment_type def isValidEmployment___module return case when job_title == nil : false when ended_by == nil : false when employment_type == nil : false else true end end end
Version data entries
179 entries across 179 versions & 1 rubygems