Method: WMATA::Line.get_all
- Defined in:
- lib/resources/line.rb
.get_all(params) ⇒ Object
NOTE: We memoize this since (a) there’s no way to ask for just one line and (b) they’re unlikely to change while we’re doing a request.
29 30 31 |
# File 'lib/resources/line.rb', line 29 def get_all(params) @lines ||= get_all_without_memoize(params) end |