Class: PecCalcClient::Town
- Inherits:
-
Object
- Object
- PecCalcClient::Town
- Defined in:
- lib/pec_calc_client/town.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id, name) ⇒ Town
constructor
A new instance of Town.
Constructor Details
#initialize(id, name) ⇒ Town
Returns a new instance of Town.
5 6 7 8 |
# File 'lib/pec_calc_client/town.rb', line 5 def initialize(id, name) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
3 4 5 |
# File 'lib/pec_calc_client/town.rb', line 3 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
3 4 5 |
# File 'lib/pec_calc_client/town.rb', line 3 def name @name end |
Class Method Details
.all ⇒ Object
10 11 12 13 |
# File 'lib/pec_calc_client/town.rb', line 10 def self.all @all = Connector.new(URL).request.to_json.map{ |town| new town } if @all.nil? @all end |