espn 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +7 -0
  3. data/espn.gemspec +17 -11
  4. data/lib/espn/version.rb +1 -1
  5. metadata +23 -7
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZGE0M2NkMDQ2NWI3MGYyOWRkN2EyNjZhYjUyM2E1ZDE0M2U2OTQ4OQ==
4
+ MGYxMjBmZGVlZTE0NDM5NWRkNWM3MmQ1Yjg3ODhjOTVkNjQ5ODhjMw==
5
5
  data.tar.gz: !binary |-
6
- NWI4MWM0YjcwNThjNjQyMTdjNDYxNGYwY2MwZTE4ZDJkYTM3NDY0Yw==
6
+ ODE1YzlmNzA2NmE4YTdmMGRjYzYwYjcxOTA3ZDNiODA0M2FmODU5OA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- Yzg4MjI0YjAxNTJjZWM3OGNiZDM4YjlhMDkzZGQ4YjVlZDg4YmVkZTdmNzZh
10
- ZmQxYmIxZDc2YjZhZmQ2MWQzNzA4ZGNhOTVmM2ZjNjMwYjE2ODQ5N2E1OTdl
11
- MjUwNjJjMGU2ZjZhNDVkOTBjOTFkZGIzYTgyN2Y2MmQ4NWZiZGE=
9
+ NWNiNjBmMDJjODJmZTg0ZTM5MjBmNDI3MjRmZjdiNmYyNmFlNjllMDY3NmI2
10
+ ZjY0OGIyNGIwYzg1YTQ5Y2Q2YzY5ZmIxZjg0Nzk3YzFiZWZlMGNmNzU5ZDRm
11
+ NTFlYWRkOGI2NDU5NzI1Y2U4NGI2N2E2MTI4NDdiMjMwYTdmOGM=
12
12
  data.tar.gz: !binary |-
13
- YmQzNmI3NDM1OTE5NDRlZDE3ZGRhNjk0ZGZlOTRhNTJlN2JjNTFkNDliNTg3
14
- YTU0MmVlNGI0MzE0YzhmZDZiMzgyZjRmMmRmN2E0YjViYTU4Y2E4YzA2YTc3
15
- NWJhMDA0NWExN2IxNGNkOTRmZjA4ZmM1ZjE2MmI1OWUwZTZmNzM=
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
+ [![Build Status](https://travis-ci.org/andrewpthorp/espn.png)](https://travis-ci.org/andrewpthorp/espn)
6
+ [![Gem Version](https://badge.fury.io/rb/espn.png)](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
+ [![ESPN API](http://a.espncdn.com/i/apis/attribution/espn-api-red_150.png)](http://espn.go.com)
@@ -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.authors = ['Andrew Thorp']
10
- s.email = ['andrewpthorp@gmail.com']
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.add_runtime_dependency 'addressable', '~> 2.2'
16
- s.add_runtime_dependency 'faraday', '~> 0.8'
17
- s.add_runtime_dependency 'faraday_middleware', '~> 0.8'
18
- s.add_runtime_dependency 'hashie', '~> 1.2'
19
- s.add_runtime_dependency 'multi_json', '~> 1.3'
20
- s.add_runtime_dependency 'oauth', '~> 0.4'
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")
@@ -1,6 +1,6 @@
1
1
  module ESPN
2
2
 
3
3
  # Public: The version of the ESPN gem.
4
- VERSION = '0.1.2'.freeze
4
+ VERSION = '0.1.3'.freeze
5
5
 
6
6
  end
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.2
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-22 00:00:00.000000000 Z
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
- description: Simple wrapper for the ESPN v1 API.
98
- email:
99
- - andrewpthorp@gmail.com
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 v1 API.
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