espn-fantasy-news 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +2 -1
  2. data/VERSION +1 -1
  3. data/espn-fantasy-news.gemspec +8 -5
  4. metadata +33 -8
data/Rakefile CHANGED
@@ -5,8 +5,9 @@ begin
5
5
  gemspec.summary = "Scrapes ESPN Fantasy football news updates and player data"
6
6
  gemspec.description = "ESPN fantasy football has a list of players in their Universe, and it provides news updates on said players. This is a utility library used to scrape the data for use in other applications"
7
7
  gemspec.email = "petkanics@gmail.com"
8
- gemspec.homepage = "http://github.com/dob/espn_fantasy_news"
8
+ gemspec.homepage = "http://github.com/dob/espn-fantasy-news"
9
9
  gemspec.authors = ["Doug Petkanics"]
10
+ gemspec.add_dependency 'nokogiri'
10
11
  end
11
12
  Jeweler::GemcutterTasks.new
12
13
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{espn-fantasy-news}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Doug Petkanics"]
12
- s.date = %q{2010-09-16}
12
+ s.date = %q{2010-09-17}
13
13
  s.description = %q{ESPN fantasy football has a list of players in their Universe, and it provides news updates on said players. This is a utility library used to scrape the data for use in other applications}
14
14
  s.email = %q{petkanics@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -28,10 +28,10 @@ Gem::Specification.new do |s|
28
28
  "test/suite.rb",
29
29
  "test/test_parser.rb"
30
30
  ]
31
- s.homepage = %q{http://github.com/dob/espn_fantasy_news}
31
+ s.homepage = %q{http://github.com/dob/espn-fantasy-news}
32
32
  s.rdoc_options = ["--charset=UTF-8"]
33
33
  s.require_paths = ["lib"]
34
- s.rubygems_version = %q{1.3.5}
34
+ s.rubygems_version = %q{1.3.7}
35
35
  s.summary = %q{Scrapes ESPN Fantasy football news updates and player data}
36
36
  s.test_files = [
37
37
  "test/suite.rb",
@@ -42,10 +42,13 @@ Gem::Specification.new do |s|
42
42
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
43
  s.specification_version = 3
44
44
 
45
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
46
47
  else
48
+ s.add_dependency(%q<nokogiri>, [">= 0"])
47
49
  end
48
50
  else
51
+ s.add_dependency(%q<nokogiri>, [">= 0"])
49
52
  end
50
53
  end
51
54
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: espn-fantasy-news
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ hash: 31
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 2
10
+ version: 0.1.2
5
11
  platform: ruby
6
12
  authors:
7
13
  - Doug Petkanics
@@ -9,10 +15,23 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2010-09-16 00:00:00 -04:00
18
+ date: 2010-09-17 00:00:00 -04:00
13
19
  default_executable:
14
- dependencies: []
15
-
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: nokogiri
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :runtime
34
+ version_requirements: *id001
16
35
  description: ESPN fantasy football has a list of players in their Universe, and it provides news updates on said players. This is a utility library used to scrape the data for use in other applications
17
36
  email: petkanics@gmail.com
18
37
  executables: []
@@ -34,7 +53,7 @@ files:
34
53
  - test/suite.rb
35
54
  - test/test_parser.rb
36
55
  has_rdoc: true
37
- homepage: http://github.com/dob/espn_fantasy_news
56
+ homepage: http://github.com/dob/espn-fantasy-news
38
57
  licenses: []
39
58
 
40
59
  post_install_message:
@@ -43,21 +62,27 @@ rdoc_options:
43
62
  require_paths:
44
63
  - lib
45
64
  required_ruby_version: !ruby/object:Gem::Requirement
65
+ none: false
46
66
  requirements:
47
67
  - - ">="
48
68
  - !ruby/object:Gem::Version
69
+ hash: 3
70
+ segments:
71
+ - 0
49
72
  version: "0"
50
- version:
51
73
  required_rubygems_version: !ruby/object:Gem::Requirement
74
+ none: false
52
75
  requirements:
53
76
  - - ">="
54
77
  - !ruby/object:Gem::Version
78
+ hash: 3
79
+ segments:
80
+ - 0
55
81
  version: "0"
56
- version:
57
82
  requirements: []
58
83
 
59
84
  rubyforge_project:
60
- rubygems_version: 1.3.5
85
+ rubygems_version: 1.3.7
61
86
  signing_key:
62
87
  specification_version: 3
63
88
  summary: Scrapes ESPN Fantasy football news updates and player data