Skip to content

Instantly share code, notes, and snippets.

@davidcpell
Last active January 7, 2016 20:34
Show Gist options
  • Save davidcpell/fd8a7496bea79fd75d02 to your computer and use it in GitHub Desktop.
Save davidcpell/fd8a7496bea79fd75d02 to your computer and use it in GitHub Desktop.
# app/services/flight_stats.rb
module FlightStats
# ...
end
# app/services/flight_stats/request.rb
module FlightStats
class Request
# ...
end
end
# app/services/flight_stats/airports.rb
module FlightStats
class Airports
# ...
def self.active(params={})
res = Request.new("#{base_path}/active", params).get
parse(res)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment