thetvdb_party 0.0.1.pre → 0.0.2.pre
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/lib/thetvdb_party/version.rb +1 -1
- data/thetvdb_party.gemspec +5 -1
- metadata +10 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f543fe1b10f1ed19ee4827a00f132adfe2133c91
|
4
|
+
data.tar.gz: eba5ba32569fe1aa8655495f30e3be520fd3faca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 202a3cb8b0a1187aa203296b1500bbaaa77f48be9dc9b9b2783da9bb4d1dca3dfd33362d4c145e146e4625b96878c631e102f57e6aa31943a23fd16a7b139b76
|
7
|
+
data.tar.gz: fb46674c11d0c22fd45837afdfe09b59c6b8ad00ca420d34ce031e4d7b234dda48f14d75ff66b19fd281271f1f9520788080600c466c340086356c51765c1760
|
data/thetvdb_party.gemspec
CHANGED
@@ -10,8 +10,9 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["fredrik.rasch@gmail.com", "tim.teige91@gmail.com", "peterme@peterme.net"]
|
11
11
|
spec.summary = "Ruby Gem for accessing the TheTVDB programmers API"
|
12
12
|
spec.description = <<-EOF
|
13
|
+
NOTE: This Gem is currently in its pre-alpha development stadium and currently only supports minimal capability.
|
13
14
|
The thetvdb_party gem accesses the TheTvDB programmers API as it is described on \"http://thetvdb.com/wiki/index.php/Programmers_API\".
|
14
|
-
It compression to minimize bandwith when accessing Full Series Records.
|
15
|
+
It uses compression to minimize bandwith when accessing Full Series Records.
|
15
16
|
EOF
|
16
17
|
spec.license = "MIT"
|
17
18
|
spec.homepage = "https://rubygems.org/gems/thetvdb_party"
|
@@ -19,6 +20,9 @@ Gem::Specification.new do |spec|
|
|
19
20
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
21
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
22
|
spec.require_paths = ["lib"]
|
23
|
+
spec.rdoc_options << '--title' << 'Rake -- Ruby Make' <<
|
24
|
+
'--main' << 'README' <<
|
25
|
+
'--line-numbers'
|
22
26
|
|
23
27
|
spec.add_development_dependency "bundler", "~> 1.7"
|
24
28
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thetvdb_party
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fredrik Høisæther Rasch
|
@@ -71,8 +71,9 @@ dependencies:
|
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: '0.6'
|
73
73
|
description: |2
|
74
|
+
NOTE: This Gem is currently in its pre-alpha development stadium and currently only supports minimal capability.
|
74
75
|
The thetvdb_party gem accesses the TheTvDB programmers API as it is described on "http://thetvdb.com/wiki/index.php/Programmers_API".
|
75
|
-
It compression to minimize bandwith when accessing Full Series Records.
|
76
|
+
It uses compression to minimize bandwith when accessing Full Series Records.
|
76
77
|
email:
|
77
78
|
- fredrik.rasch@gmail.com
|
78
79
|
- tim.teige91@gmail.com
|
@@ -94,7 +95,12 @@ licenses:
|
|
94
95
|
- MIT
|
95
96
|
metadata: {}
|
96
97
|
post_install_message:
|
97
|
-
rdoc_options:
|
98
|
+
rdoc_options:
|
99
|
+
- "--title"
|
100
|
+
- Rake -- Ruby Make
|
101
|
+
- "--main"
|
102
|
+
- README
|
103
|
+
- "--line-numbers"
|
98
104
|
require_paths:
|
99
105
|
- lib
|
100
106
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -114,3 +120,4 @@ signing_key:
|
|
114
120
|
specification_version: 4
|
115
121
|
summary: Ruby Gem for accessing the TheTVDB programmers API
|
116
122
|
test_files: []
|
123
|
+
has_rdoc:
|