Merge branch 'master' into iss-1192-test
This commit is contained in:
7
lib/age.rb
Normal file
7
lib/age.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
module Age
|
||||
def self.in_years(dob, now = Time.now.utc.to_date)
|
||||
return nil unless dob.present?
|
||||
# reference: http://stackoverflow.com/questions/819263/get-persons-age-in-ruby#comment21200772_819263
|
||||
now.year - dob.year - ((now.month > dob.month || (now.month == dob.month && now.day >= dob.day)) ? 0 : 1)
|
||||
end
|
||||
end
|
||||
@@ -61,6 +61,10 @@ class CensusApi
|
||||
end
|
||||
end
|
||||
|
||||
def name
|
||||
"#{data[:datos_habitante][:item][:nombre]} #{data[:datos_habitante][:item][:apellido1]}"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def data
|
||||
|
||||
Reference in New Issue
Block a user