espn 0.1.2 → 0.1.3
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 +8 -8
- data/README.md +7 -0
- data/espn.gemspec +17 -11
- data/lib/espn/version.rb +1 -1
- metadata +23 -7
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MGYxMjBmZGVlZTE0NDM5NWRkNWM3MmQ1Yjg3ODhjOTVkNjQ5ODhjMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ODE1YzlmNzA2NmE4YTdmMGRjYzYwYjcxOTA3ZDNiODA0M2FmODU5OA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NWNiNjBmMDJjODJmZTg0ZTM5MjBmNDI3MjRmZjdiNmYyNmFlNjllMDY3NmI2
|
|
10
|
+
ZjY0OGIyNGIwYzg1YTQ5Y2Q2YzY5ZmIxZjg0Nzk3YzFiZWZlMGNmNzU5ZDRm
|
|
11
|
+
NTFlYWRkOGI2NDU5NzI1Y2U4NGI2N2E2MTI4NDdiMjMwYTdmOGM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MmFkOThkZTk1ZDZiNDIxYmE0ZmY1MzNiNWFmNWY3M2IwMTMxMjg2NDBiZTJh
|
|
14
|
+
YzRmOGFjOTdjMjNkZGY0ZTc1NzYxMjdhNzEzMmJmYzc0OWQ2MDcxNDQ2MDRl
|
|
15
|
+
M2I1N2U4MzYxODhlZTk4ODlhMjFkNTI0NzVhZTE1ZGYyZThjZTM=
|
data/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Simply Ruby Wrapper for the ESPN Developer API.
|
|
4
4
|
|
|
5
|
+
[](https://travis-ci.org/andrewpthorp/espn)
|
|
6
|
+
[](http://badge.fury.io/rb/espn)
|
|
7
|
+
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
gem install espn
|
|
@@ -38,3 +41,7 @@ showing the world how API Wrappers should work.
|
|
|
38
41
|
Copyright (c) 2013 Andrew Thorp. See [LICENSE][] for details.
|
|
39
42
|
|
|
40
43
|
[license]: LICENSE.md
|
|
44
|
+
|
|
45
|
+
## Attribution
|
|
46
|
+
|
|
47
|
+
[](http://espn.go.com)
|
data/espn.gemspec
CHANGED
|
@@ -4,20 +4,26 @@ require File.expand_path('../lib/espn/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'espn'
|
|
6
6
|
s.version = ESPN::VERSION.dup
|
|
7
|
-
s.platform = Gem::Platform::RUBY
|
|
8
7
|
|
|
9
|
-
s.
|
|
10
|
-
s.email =
|
|
8
|
+
s.author = 'Andrew Thorp'
|
|
9
|
+
s.email = 'andrewpthorp@gmail.com'
|
|
11
10
|
s.homepage = 'http://github.com/andrewpthorp/espn'
|
|
12
|
-
s.description = %q{Simple wrapper for the ESPN v1 API.}
|
|
13
|
-
s.summary = s.description
|
|
14
11
|
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
s.license = 'MIT'
|
|
13
|
+
s.summary = 'Simple wrapper for the ESPN API.'
|
|
14
|
+
s.description = <<-EOF
|
|
15
|
+
A ruby wrapper for the ESPN Developer API. Their API allows you to get
|
|
16
|
+
sports, leagues, scores, standings, the latest news and more. This is a
|
|
17
|
+
wrapper around that API so you can pull it into your applications with ruby.
|
|
18
|
+
EOF
|
|
19
|
+
|
|
20
|
+
s.add_dependency 'addressable', '~> 2.2'
|
|
21
|
+
s.add_dependency 'faraday', '~> 0.8'
|
|
22
|
+
s.add_dependency 'faraday_middleware', '~> 0.8'
|
|
23
|
+
s.add_dependency 'hashie', '~> 1.2'
|
|
24
|
+
s.add_dependency 'multi_json', '~> 1.3'
|
|
25
|
+
s.add_dependency 'oauth', '~> 0.4'
|
|
26
|
+
s.add_dependency 'uri_template', '~> 0.6'
|
|
21
27
|
|
|
22
28
|
s.files = %w(LICENSE.md README.md espn.gemspec)
|
|
23
29
|
s.files += Dir.glob("lib/**/*.rb")
|
data/lib/espn/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: espn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Thorp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|
|
@@ -94,9 +94,24 @@ dependencies:
|
|
|
94
94
|
- - ~>
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0.4'
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: uri_template
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ~>
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0.6'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ~>
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0.6'
|
|
111
|
+
description: ! " A ruby wrapper for the ESPN Developer API. Their API allows you
|
|
112
|
+
to get\n sports, leagues, scores, standings, the latest news and more. This is
|
|
113
|
+
a\n wrapper around that API so you can pull it into your applications with ruby.\n"
|
|
114
|
+
email: andrewpthorp@gmail.com
|
|
100
115
|
executables: []
|
|
101
116
|
extensions: []
|
|
102
117
|
extra_rdoc_files: []
|
|
@@ -139,7 +154,8 @@ files:
|
|
|
139
154
|
- spec/espn_spec.rb
|
|
140
155
|
- spec/spec_helper.rb
|
|
141
156
|
homepage: http://github.com/andrewpthorp/espn
|
|
142
|
-
licenses:
|
|
157
|
+
licenses:
|
|
158
|
+
- MIT
|
|
143
159
|
metadata: {}
|
|
144
160
|
post_install_message:
|
|
145
161
|
rdoc_options: []
|
|
@@ -160,7 +176,7 @@ rubyforge_project:
|
|
|
160
176
|
rubygems_version: 2.0.7
|
|
161
177
|
signing_key:
|
|
162
178
|
specification_version: 4
|
|
163
|
-
summary: Simple wrapper for the ESPN
|
|
179
|
+
summary: Simple wrapper for the ESPN API.
|
|
164
180
|
test_files:
|
|
165
181
|
- spec/espn/client/athletes_spec.rb
|
|
166
182
|
- spec/espn/client/audio_spec.rb
|