No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for JetBlue flights status API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 3.2.18
~> 0.12.0
~> 1.5
 Project Readme

JetBlue Plane Tracker

A Ruby wrapper for JetBlue flights status tracker.

Installation

Install the gem via the CLI

	gem install jetblue_plane_tracker

or

Just add the following into your Gemfile and run bundle.

	gem 'jetblue_plane_tracker'

Usage

Instantiate the tracker

jbtracker = JetBluePlaneTracker::Tracker.new

Get a flight status by the departure and arrival city and its date:

flights = jbtracker.flight_status(origin: "SFO", destination: "JFK", date: "2015-07-31")

Get a flight status by the flight number and its date:

flights = jbtracker.flight_status(flight: 37, date: "2015-07-29")

Suggestions

  • Date Format is yyyy-mm-dd
  • Permited params are:
    • origin
    • destination
    • date
    • flight
    • date
  • Params origin and destination are valid IATA airport codes