tvrage_api 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +8 -7
- data/lib/tvrage_api/version.rb +1 -1
- data/tvrage_api.gemspec +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 113bc0f11f6442f79fc786189fefb52e634c4367
|
|
4
|
+
data.tar.gz: 440b7e8e641d79ac98f4a6fd850e142e4d3db3d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 741105dc9cb02c567a3dce94f680fcc00d5246002f477bf3e34f0f9d48fad3ee8b5fbb034bc58400c8a9a553f44619bb52851ca6064eeeeddc00723608da2fac
|
|
7
|
+
data.tar.gz: 59f45cbc2c174ebd517c3a30ba06bbe63c6795e64302913273ae06c6aedbd0712ecda47f97f721ae90463dab8cc8dc46778b390d6b54bfeb2e41e0bba704f088
|
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
[](https://gemnasium.com/wafcio/tvrage_api)
|
|
3
3
|
[](https://codeclimate.com/github/wafcio/tvrage_api)
|
|
4
4
|
[](https://coveralls.io/r/wafcio/tvrage_api)
|
|
5
|
+
[](http://badge.fury.io/rb/tvrage_api)
|
|
5
6
|
|
|
6
7
|
# TvrageApi
|
|
7
8
|
|
|
@@ -27,13 +28,13 @@ series.result
|
|
|
27
28
|
=> #<TvrageApi::Show ...>
|
|
28
29
|
```
|
|
29
30
|
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
31
|
+
* TvrageApi::Request::Search.find(show_name) - return collection of show
|
|
32
|
+
* TvrageApi::Request::Search.find_full(show_name) - return collection of show with more details
|
|
33
|
+
* TvrageApi::Request::Show.find(show_id) - return show
|
|
34
|
+
* TvrageApi::Request::Show.find_full(show_id) - return show with more details
|
|
35
|
+
* TvrageApi::Request::Show.episodes(show_id) - return simple show information with all episodes
|
|
36
|
+
* TvrageApi::Request::Show.episode(show_id, season, episode) - return simple show information with specific episode
|
|
37
|
+
* TvrageApi::Request::Update.all - return all shows (simple information: id, name)
|
|
37
38
|
|
|
38
39
|
|
|
39
40
|
## Contributing
|
data/lib/tvrage_api/version.rb
CHANGED
data/tvrage_api.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['krzysztof.wawer@gmail.com']
|
|
11
11
|
spec.description = %q{Ruby client for accessing TV shows information from the tvrage.com API}
|
|
12
12
|
spec.summary = %q{Ruby client for tvrage.com API}
|
|
13
|
+
spec.homepage = %q{http://github.com/wafcio/tvrage_api}
|
|
13
14
|
spec.license = "MIT"
|
|
14
15
|
|
|
15
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tvrage_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Krzysztof Wawer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-12-
|
|
11
|
+
date: 2013-12-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -143,7 +143,7 @@ files:
|
|
|
143
143
|
- spec/tvrage_api/utility/integer_spec.rb
|
|
144
144
|
- spec/tvrage_api/utility/string_spec.rb
|
|
145
145
|
- tvrage_api.gemspec
|
|
146
|
-
homepage:
|
|
146
|
+
homepage: http://github.com/wafcio/tvrage_api
|
|
147
147
|
licenses:
|
|
148
148
|
- MIT
|
|
149
149
|
metadata: {}
|