module CanadaEh

Constants

VERSION

Public Class Methods

capital_cities() click to toggle source
# File lib/canada_eh.rb, line 13
def self.capital_cities
  CanadaEh::City.where(:is_capital => true)
end
just_provinces() click to toggle source
# File lib/canada_eh.rb, line 5
def self.just_provinces
  CanadaEh::Province.where(:is_territory => false)
end
just_territories() click to toggle source
# File lib/canada_eh.rb, line 9
def self.just_territories
  CanadaEh::Province.where(:is_territory => true)
end