bpt_scraper 0.1.0 → 0.2.0

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: 2853bd3aee52c47391eb9c1ca53ef7f54b54e0a2
4
- data.tar.gz: 5181100de11dc79f1cff0b56a9311ce0f501ff9b
3
+ metadata.gz: 7e5ec726036fa506931b1173e9f427ac6b01ce66
4
+ data.tar.gz: ce25b3acfc24b54a0bd00639f98dfd316b3767f4
5
5
  SHA512:
6
- metadata.gz: bbb8822b02396c56d2da3323c6453611c3dcd02fdaaec44de24cb6e37aef23a8089b0eec81e22c7513f588366ddb7fc0eff593ffa434c10ec85f5ae13c4bf105
7
- data.tar.gz: 85202839f96600697be1358c7521aede0e379b416eec06cbab28fac1a16439f236beaf440618c1303fa5d01b23d25cc70f092948818086446ae50dd31555e395
6
+ metadata.gz: bffba651697226e97a30b356b87a32e572df6b7edd848df5c1a4c044b5c54006039ff5d4945d8cba0e0628fdd4309c8399058a62c33245aea88ab1a80829fe6e
7
+ data.tar.gz: 9673793b50ce92a8bddc1bc51629a34f89e92ba8920018b9f3254120a25223b77a99d6f1d14dc4692f2e7dd5784e330fb539fe740738fb03ce2232cd43cdc778
data/README.md CHANGED
@@ -92,10 +92,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
92
92
 
93
93
  ## Contributing
94
94
 
95
- Bug reports and pull requests are welcome on GitHub at https://github.com/Joshua Bartlett/bpt_scraper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
95
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bartboy011/bpt_scraper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
96
96
 
97
97
 
98
98
  ## License
99
99
 
100
100
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
101
-
@@ -14,7 +14,8 @@ module BptScraper
14
14
  end
15
15
 
16
16
  # returns an HTTParty response object
17
- def event_list
17
+ def event_list(event_id: nil)
18
+ @event_id = event_id
18
19
  url = list_url_builder('eventlist')
19
20
  response = fetch_url url
20
21
  response
@@ -1,3 +1,3 @@
1
1
  module BptScraper
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.2.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bpt_scraper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Bartlett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-12 00:00:00.000000000 Z
11
+ date: 2017-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -118,7 +118,6 @@ files:
118
118
  - ".gitignore"
119
119
  - ".rspec"
120
120
  - ".rubocop.yml"
121
- - ".travis.yml"
122
121
  - CODE_OF_CONDUCT.md
123
122
  - Gemfile
124
123
  - LICENSE.txt
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.0
5
- before_install: gem install bundler -v 1.14.4