lib/osm/member.rb in osm-0.0.8 vs lib/osm/member.rb in osm-0.0.9

- old
+ new

@@ -2,13 +2,13 @@ class Member attr_reader :id, :section_id, :type, :first_name, :last_name, :email1, :email2, :email3, :email4, :phone1, :phone2, :phone3, :phone4, :address, :address2, :date_of_birth, :started, :joined_in_years, :parents, :notes, :medical, :religion, :school, :ethnicity, :subs, :grouping_id, :grouping_leader, :joined, :age, :joined_years # @!attribute [r] id - # @return [FixNum] the id for the member + # @return [Fixnum] the id for the member # @!attribute [r] section_id - # @return [FixNum] the section the member belongs to + # @return [Fixnum] the section the member belongs to # @!attribute [r] type # @return [?] ? # @!attribute [r] first_name # @return [String] the member's first name # @!attribute [r] last_name @@ -36,11 +36,11 @@ # @!attribute [r] date_of_birth # @return [Date] the member's date of birth # @!attribute [r] started # @return [Date] when the member started Scouting # @!attribute [r] joined_in_years - # @return [FixNum] ? + # @return [Fixnum] ? # @!attribute [r] parents # @return [String] the member's parent's names # @!attribute [r] notes # @return [String] notes relating to the member # @!attribute [r] medical @@ -52,19 +52,19 @@ # @!attribute [r] ethnicity # @return [String] the member's ethnicity # @!attribute [r] subs # @return [String] details about the member's subs # @!attribute [r] grouping_id - # @return [FixNum] the grouping within the section that the member belongs to + # @return [Fixnum] the grouping within the section that the member belongs to # @!attribute [r] grouping_leader - # @return [FixNum] wether the member is the grouping leader (0=no, 1=seconder/APL, 2=sixer/PL) + # @return [Fixnum] wether the member is the grouping leader (0=no, 1=seconder/APL, 2=sixer/PL) # @!attribute [r] joined # @return [Date] when the member joined the section # @!attribute [r] age # @return [String] the member's current age (yy/mm) # @!attribute [r] joined_years - # @return [FixNum] how many years the member has been in Scouting + # @return [Fixnum] how many years the member has been in Scouting # Initialize a new Member using the hash returned by the API call # @param data the hash of data for the object returned by the API def initialize(data) @@ -99,16 +99,16 @@ @age = data['age'] # 'yy / mm' @joined_years = data['yrs'].to_i end # Get the years element of this scout's age - # @return [FixNum] the number of years this scout has been alive + # @return [Fixnum] the number of years this scout has been alive def age_years return @age[0..1].to_i end # Get the months element of this scout's age - # @return [FixNum] the number of months since this scout's last birthday + # @return [Fixnum] the number of months since this scout's last birthday def age_months return @age[-2..-1].to_i end # Get the full name