bart_waiting_list 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e3219c9b288fee8f22075ac7ef9775318ff9954
4
- data.tar.gz: e07ca09c2138e46bf401630334677abc9ee5c60c
3
+ metadata.gz: 54bcbd8696048bdafabd57cd96f98311dc4be821
4
+ data.tar.gz: b02aa2a0aed85adfbf7cb73b08977583cc704324
5
5
  SHA512:
6
- metadata.gz: f9da5a289e33e7d551e3c62d9c5ea0f31470025bf2f6a4c195d5e7db6b23d3f8b9e20e0d7d35c95582bc7d55500653451a116c155f8968feca4aa6748ed6311c
7
- data.tar.gz: 1ef7c7b1035d9a3fb822a91efab9189d7c7e804319a54a4813412e8c2a3c8705c39c08960f00eebe582eccf6b842e11c81c5f8f2b4eecc13c5ec22c8d73575d7
6
+ metadata.gz: 04696993f3b77416e1198ec930fce8ad2f0075a5c88e2dbfbd48b052fde55ebc13ae934c199579540576abdcbce1b3633806e8c20630275c714cb5e8780bae1b
7
+ data.tar.gz: 880d11db60b964106e257d6980f0a43938c978feab962f74c0c83692dbb356cd00d134ecbb98cfda2c571a04bd4beda331a44a34c7a0afe101940f227c713f5b
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'bart_waiting_list'
7
- spec.version = '0.0.3'
7
+ spec.version = '0.0.4'
8
8
  spec.authors = ["Brian O'Keefe"]
9
9
  spec.email = ['brian@bokstuff.com']
10
10
  spec.summary = %q{Get data from the BART select-a-spot waiting list page}
@@ -1,6 +1,8 @@
1
1
  require 'mechanize'
2
2
  require 'yaml'
3
3
 
4
+ STATIONS_FILE = File.expand_path "#{__FILE__}/../../stations.yaml"
5
+
4
6
  HOME_URL = 'https://www.select-a-spot.com/bart/'
5
7
  WAITING_LIST_URL = 'https://www.select-a-spot.com/bart/waiting_lists/'
6
8
 
@@ -50,7 +52,7 @@ class BartWaitingList
50
52
  def get_station_name(station)
51
53
  station_names = {}
52
54
 
53
- YAML.load_file('stations.yaml').each do |key, value|
55
+ YAML.load_file(STATIONS_FILE).each do |key, value|
54
56
  station_names[key.to_sym] = value
55
57
  end
56
58
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bart_waiting_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian O'Keefe