module UndergroundWeather class Client attr_accessor :api_key def initialize(api_key) @api_key = api_key end include Features end end