Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tube

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tube

  • 0.3.0pre
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= Tube/Status

A simple MIT licensed Ruby library to access the status of the London Underground network as returned by the Transport for London {API}[http://api.tfl.gov.uk].

Before the API was available this library scraped the data from the TFL website, at the moment the code has been updated to retain mostly the same Ruby API, while calling the new TFL API, rather than scrape the website. In the future this library may change to better match what TFL now make available.

== Installation

$ gem install tube

== Examples require "tube/status"

status = Tube::Status.new

broken_lines = status.lines.select {|line| line.problem?}
broken_lines.collect {|line| line.name}
#=> ["Circle", "District", "Jubilee", "Metropolitan", "Northern"]

status.lines.detect {|line| line.id == :circle}.message
#=> "Saturday 7 and Sunday 8 March, suspended."

closed_stations = status.station_groups["Closed stations"]
closed_stations.collect {|station| station.name}
#=> ["Blackfriars", "Hatton Cross"]

stations = status.station_groups.values.flatten
stations.detect {|station| station.name =~ "hatton"}.message
#=> "Saturday 7 and Sunday 8 March, closed."

status.updated.strftime("%I:%M%p")
#=> "04:56PM"

status.reload
status.updated.strftime("%I:%M%p")
#=> "05:00PM"

FAQs

Package last updated on 08 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc