class ListOfCountries::Name
Attributes
common[R]
official[R]
Public Class Methods
new(data)
click to toggle source
# File lib/list_of_countries/name.rb, line 8 def initialize(data) @common = data.fetch("common") @official = data.fetch("official") end