torrents 1.0.13 → 1.0.14
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.
- data/README.md +9 -4
- data/torrents.gemspec +3 -3
- metadata +5 -7
data/README.md
CHANGED
|
@@ -9,6 +9,11 @@ Download and get information like:
|
|
|
9
9
|
- A direct download link to the torrent.
|
|
10
10
|
- [IMDB](http://imdb.com) link
|
|
11
11
|
|
|
12
|
+
## This version is no longer maintained
|
|
13
|
+
|
|
14
|
+
Version 1.0 is no longer maintained.
|
|
15
|
+
I might release version 2.0 in the future.
|
|
16
|
+
|
|
12
17
|
## Which trackers are implemented at the moment?
|
|
13
18
|
|
|
14
19
|
### Open trackers
|
|
@@ -209,11 +214,11 @@ Don't know Nokogiri? Take a look at [this](http://railscasts.com/episodes/190-sc
|
|
|
209
214
|
5. Add the tracker to the readme.
|
|
210
215
|
6. Do a pull request, if you want to share you implementation with the world.
|
|
211
216
|
|
|
212
|
-
You don't have to take care about exceptions,
|
|
217
|
+
You don't have to take care about exceptions, *Torrents* does that for you.
|
|
213
218
|
|
|
214
219
|
## Disclaimer
|
|
215
220
|
|
|
216
|
-
Before you use
|
|
221
|
+
Before you use *Torrents* make sure you have permission from the tracker in question to use their data.
|
|
217
222
|
|
|
218
223
|
## How do install
|
|
219
224
|
|
|
@@ -225,8 +230,8 @@ Add `gem 'torrents'` to your Gemfile and run `bundle`.
|
|
|
225
230
|
|
|
226
231
|
## Requirements
|
|
227
232
|
|
|
228
|
-
Torrents is tested in OS X 10.6.6 using Ruby 1.9.2.
|
|
233
|
+
*Torrents* is tested in OS X 10.6.6 using Ruby 1.9.2.
|
|
229
234
|
|
|
230
235
|
## License
|
|
231
236
|
|
|
232
|
-
Torrents is released under the MIT license.
|
|
237
|
+
*Torrents* is released under the MIT license.
|
data/torrents.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "torrents"
|
|
6
|
-
s.version = "1.0.
|
|
6
|
+
s.version = "1.0.14"
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
8
8
|
s.authors = ["Linus Oleander"]
|
|
9
9
|
s.email = ["linus@oleander.nu"]
|
|
@@ -24,8 +24,8 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.add_dependency('nokogiri')
|
|
25
25
|
s.add_dependency('rchardet19')
|
|
26
26
|
s.add_dependency('classify', '~> 0.0.3')
|
|
27
|
-
s.add_dependency('movie_searcher', '~> 0.1.
|
|
28
|
-
s.add_dependency('undertexter', '~> 0.1.
|
|
27
|
+
s.add_dependency('movie_searcher', '~> 0.1.6')
|
|
28
|
+
s.add_dependency('undertexter', '~> 0.1.12')
|
|
29
29
|
|
|
30
30
|
s.add_development_dependency('rspec')
|
|
31
31
|
s.add_development_dependency('isolate')
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: torrents
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.0.
|
|
5
|
+
version: 1.0.14
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Linus Oleander
|
|
@@ -10,8 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
14
|
-
default_executable:
|
|
13
|
+
date: 2011-12-27 00:00:00 Z
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|
|
17
16
|
name: rest-client
|
|
@@ -65,7 +64,7 @@ dependencies:
|
|
|
65
64
|
requirements:
|
|
66
65
|
- - ~>
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 0.1.
|
|
67
|
+
version: 0.1.6
|
|
69
68
|
type: :runtime
|
|
70
69
|
version_requirements: *id005
|
|
71
70
|
- !ruby/object:Gem::Dependency
|
|
@@ -76,7 +75,7 @@ dependencies:
|
|
|
76
75
|
requirements:
|
|
77
76
|
- - ~>
|
|
78
77
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: 0.1.
|
|
78
|
+
version: 0.1.12
|
|
80
79
|
type: :runtime
|
|
81
80
|
version_requirements: *id006
|
|
82
81
|
- !ruby/object:Gem::Dependency
|
|
@@ -142,7 +141,6 @@ files:
|
|
|
142
141
|
- spec/trackers/torrentleech_spec.rb
|
|
143
142
|
- spec/trackers/tti_spec.rb
|
|
144
143
|
- torrents.gemspec
|
|
145
|
-
has_rdoc: true
|
|
146
144
|
homepage: https://github.com/oleander/Torrents
|
|
147
145
|
licenses: []
|
|
148
146
|
|
|
@@ -166,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
166
164
|
requirements: []
|
|
167
165
|
|
|
168
166
|
rubyforge_project: torrents
|
|
169
|
-
rubygems_version: 1.
|
|
167
|
+
rubygems_version: 1.8.8
|
|
170
168
|
signing_key:
|
|
171
169
|
specification_version: 3
|
|
172
170
|
summary: Search and download torrents from your favorite bittorrent tracker using Ruby 1.9
|