fantasy-football 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7b64077cc72f182c80b8fbef1d6cfe1d58d24f5ef3e35a3b77891f5c472c8ec
4
- data.tar.gz: e3d0986bb8babd9e862390bce7f26a0f5cad59b7ddfe0e80404a17aecff89eb7
3
+ metadata.gz: b28a69596c517566201c97b7a83ce6dceb19a9d3ad23b4b6daaf68d65886a785
4
+ data.tar.gz: 72850a8b5d8dba99bc13b492f91659e54c34f8c346e47ebe1f8bfa5a0aa28a22
5
5
  SHA512:
6
- metadata.gz: 96a935f811fdeb33d9c8e48a0307553503e39f12c916aedd8b381d7a4503e6e9efc7897104397363854a392f8c56dd34daed0ef25b9e789b2de2869d34004031
7
- data.tar.gz: d28423da0cb221d52b82ad92d25ce6433e85c14bee46c97d236fe930c1309937696ba54805d0650d54289fc744e9c82d7c82b4e46bf0759123f358c04a0e7068
6
+ metadata.gz: be152a71fedd40cb6e418894ecd83f107c42b11f974c75ad0ee0733a402bd5e06f60612a0b51aa2808b9cb45dc7ae64ad60c16c97ffae4316734d43308ea696d
7
+ data.tar.gz: ef77a72dae2385e831f77d821f5329e3d91337913956ff324dcf5219018c60817c6efe05c89c6eb75dd9500717209a1cf9a0141e7c76d7744a246efe650bbc31
@@ -15,7 +15,7 @@ class FantasyFootball::Scraper
15
15
  def self.build_players(table,position)
16
16
  # Input is HTML table of player rankings, instantiates Players, assigns name, rank, and url
17
17
  table.each_with_index do |t, i|
18
- if i < Scraper.size
18
+ if i < size
19
19
  p = FantasyFootball::Player.new
20
20
  p.name = [t.text.split[1], t.text.split[3]].join(" ")
21
21
  p.rank = t.text.split[0]
@@ -1,3 +1,3 @@
1
1
  module FantasyFootball
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fantasy-football
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'Mike Dilley'"