SgMRT

SgMRT is a collection of Singapore's MRT Lines and Stations for use in Ruby. This tiny gem's data is taken from List of Singapore MRT stations

Usage:

# Get all MRT Lines
SgMRT::Line.all                           # => [<SgMRT::Line @name='North East Line' @code='nsl' @stations=[...]>]

# Get all MRT Stations
SgMRT::Station.all                        # => [<SgMRT::Station @name='Paya Lebar' @codes=[...]>]

# Find a station by name
SgMRT::Station.find_by_name('City Hall')  # => <SgMRT::Station @name='City Hall', @codes=[...]>

# Find station by code
SgMRT::Station.find_by_code('EW13')       # => <SgMRT::Station @name='City Hall', @codes=[...]>

See specs for more usage examples.

Todos:

  • Provide support for rails

License

(The MIT License)

Copyright © 2012 Tors Dalid

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.