tpb_wrap 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.lre ADDED
@@ -0,0 +1 @@
1
+ load "lib/tpb_wrap.rb"
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,20 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.8.0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler", "~> 1.2"
12
+ gem "jeweler", "~> 1.8.4"
13
+ # gem "rcov", ">= 0"
14
+ end
15
+
16
+ gem 'mharris_ext'
17
+ gem 'nokogiri'
18
+ gem 'lre'
19
+ gem 'oauth'
20
+ gem 'patron'
data/Gemfile.lock ADDED
@@ -0,0 +1,49 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ facets (2.9.3)
6
+ fattr (2.2.1)
7
+ git (1.2.5)
8
+ jeweler (1.8.4)
9
+ bundler (~> 1.0)
10
+ git (>= 1.2.5)
11
+ rake
12
+ rdoc
13
+ json (1.7.5)
14
+ lre (0.3.0)
15
+ fattr
16
+ mharris_ext
17
+ watchr
18
+ mharris_ext (1.6.0)
19
+ facets
20
+ fattr
21
+ nokogiri (1.5.6)
22
+ oauth (0.4.7)
23
+ patron (0.4.18)
24
+ rake (10.0.3)
25
+ rdoc (3.12)
26
+ json (~> 1.4)
27
+ rspec (2.8.0)
28
+ rspec-core (~> 2.8.0)
29
+ rspec-expectations (~> 2.8.0)
30
+ rspec-mocks (~> 2.8.0)
31
+ rspec-core (2.8.0)
32
+ rspec-expectations (2.8.0)
33
+ diff-lcs (~> 1.1.2)
34
+ rspec-mocks (2.8.0)
35
+ watchr (0.7)
36
+
37
+ PLATFORMS
38
+ ruby
39
+
40
+ DEPENDENCIES
41
+ bundler (~> 1.2)
42
+ jeweler (~> 1.8.4)
43
+ lre
44
+ mharris_ext
45
+ nokogiri
46
+ oauth
47
+ patron
48
+ rdoc (~> 3.12)
49
+ rspec (~> 2.8.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Mike Harris
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = tpb_wrap
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to tpb_wrap
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2013 Mike Harris. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "tpb_wrap"
18
+ gem.homepage = "http://github.com/mharris717/tpb_wrap"
19
+ gem.license = "MIT"
20
+ gem.summary = "Wrapper around pirate bay"
21
+ gem.description = "Wrapper around pirate bay"
22
+ gem.email = "mharris717@gmail.com"
23
+ gem.authors = ["Mike Harris"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "tpb_wrap #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/lib/tpb_wrap.rb ADDED
@@ -0,0 +1,16 @@
1
+ require 'nokogiri'
2
+ require 'mharris_ext'
3
+ require 'open-uri'
4
+ require 'oauth'
5
+
6
+ %w(page source media).each do |f|
7
+ load File.expand_path(File.dirname(__FILE__)) + "/tpb_wrap/#{f}.rb"
8
+ end
9
+
10
+ module TpbWrap
11
+ class << self
12
+ def magnet_url(name)
13
+ Media.new(:name => name).magnet_url
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,12 @@
1
+ module TpbWrap
2
+ class Media
3
+ include FromHash
4
+ attr_accessor :name
5
+ def search_url
6
+ "http://thepiratebay.se/search/#{name}/0/7/0"
7
+ end
8
+ def magnet_url
9
+ Page.new(:url => search_url).first_source.magnet_url
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,16 @@
1
+ module TpbWrap
2
+ class Page
3
+ include FromHash
4
+ attr_accessor :body
5
+ def url=(url)
6
+ self.body = open(url).read
7
+ end
8
+ fattr(:doc) do
9
+ Nokogiri::HTML(body)
10
+ end
11
+ def first_source
12
+ link = doc.css("a.detLink").first
13
+ Source.new(:page_url => link.attribute("href"))
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,22 @@
1
+ module TpbWrap
2
+ class Source
3
+ include FromHash
4
+ attr_accessor :page_url
5
+ def page_url=(url)
6
+ unless url =~ /http/
7
+ url = url.to_s.split("/")[0..2].join("/")
8
+ url = "http://thepiratebay.se#{url}"
9
+ end
10
+ @page_url = url
11
+ end
12
+ fattr(:doc) do
13
+ Nokogiri::HTML(page_body)
14
+ end
15
+ fattr(:page_body) do
16
+ open(page_url)
17
+ end
18
+ fattr(:magnet_url) do
19
+ doc.css("div.download a").first.attribute('href')
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'tpb_wrap'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "TpbWrap" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
data/tpb_wrap.gemspec ADDED
@@ -0,0 +1,82 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "tpb_wrap"
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Mike Harris"]
12
+ s.date = "2013-01-02"
13
+ s.description = "Wrapper around pirate bay"
14
+ s.email = "mharris717@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".lre",
22
+ ".rspec",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "LICENSE.txt",
26
+ "README.rdoc",
27
+ "Rakefile",
28
+ "VERSION",
29
+ "lib/tpb_wrap.rb",
30
+ "lib/tpb_wrap/media.rb",
31
+ "lib/tpb_wrap/page.rb",
32
+ "lib/tpb_wrap/source.rb",
33
+ "spec/spec_helper.rb",
34
+ "spec/tpb_wrap_spec.rb",
35
+ "tpb_wrap.gemspec",
36
+ "vol/media_test.rb",
37
+ "vol/oauth_test.rb",
38
+ "vol/put_pirate_combined_test.rb"
39
+ ]
40
+ s.homepage = "http://github.com/mharris717/tpb_wrap"
41
+ s.licenses = ["MIT"]
42
+ s.require_paths = ["lib"]
43
+ s.rubygems_version = "1.8.23"
44
+ s.summary = "Wrapper around pirate bay"
45
+
46
+ if s.respond_to? :specification_version then
47
+ s.specification_version = 3
48
+
49
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
50
+ s.add_runtime_dependency(%q<mharris_ext>, [">= 0"])
51
+ s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
52
+ s.add_runtime_dependency(%q<lre>, [">= 0"])
53
+ s.add_runtime_dependency(%q<oauth>, [">= 0"])
54
+ s.add_runtime_dependency(%q<patron>, [">= 0"])
55
+ s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
56
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
57
+ s.add_development_dependency(%q<bundler>, ["~> 1.2"])
58
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
59
+ else
60
+ s.add_dependency(%q<mharris_ext>, [">= 0"])
61
+ s.add_dependency(%q<nokogiri>, [">= 0"])
62
+ s.add_dependency(%q<lre>, [">= 0"])
63
+ s.add_dependency(%q<oauth>, [">= 0"])
64
+ s.add_dependency(%q<patron>, [">= 0"])
65
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
66
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
67
+ s.add_dependency(%q<bundler>, ["~> 1.2"])
68
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
69
+ end
70
+ else
71
+ s.add_dependency(%q<mharris_ext>, [">= 0"])
72
+ s.add_dependency(%q<nokogiri>, [">= 0"])
73
+ s.add_dependency(%q<lre>, [">= 0"])
74
+ s.add_dependency(%q<oauth>, [">= 0"])
75
+ s.add_dependency(%q<patron>, [">= 0"])
76
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
77
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
78
+ s.add_dependency(%q<bundler>, ["~> 1.2"])
79
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
80
+ end
81
+ end
82
+
data/vol/media_test.rb ADDED
@@ -0,0 +1,4 @@
1
+ (0...8).each { |x| puts "" }
2
+
3
+
4
+ puts TpbWrap.magnet_url('Chronicle')
data/vol/oauth_test.rb ADDED
@@ -0,0 +1,12 @@
1
+ secret = "crazygtl4ii5ojsvu2ar"
2
+ client_id = "253"
3
+ user_token = "F0B582CP"
4
+
5
+ https://api.put.io/v2/oauth2/access_token
6
+ ?client_id=YOUR_CLIENT_ID
7
+ &client_secret=YOUR_CLIENT_SECRET
8
+ &grant_type=authorization_code
9
+ &redirect_uri=YOUR_REGISTERED_REDIRECT_URI
10
+ &code=CODE
11
+
12
+ token_url = "https://api.put.io/v2/oauth2/access_token"
@@ -0,0 +1,76 @@
1
+ def token
2
+ "F0B582CP"
3
+ end
4
+
5
+ class PutioApi
6
+ include FromHash
7
+ attr_accessor :access_token
8
+
9
+ def url(sub)
10
+ require 'open-uri'
11
+ url = "https://api.put.io/v2/#{sub}?oauth_token=#{access_token}"
12
+ puts "getting #{url}"
13
+ url
14
+ end
15
+
16
+ def get(sub)
17
+ json = open(url(sub)).read
18
+ JSON.parse(json)
19
+ end
20
+
21
+ def post(sub,data={})
22
+ #sess = Patron::Session.new
23
+ #sess.timeout = 10
24
+ #sess.base_url = "https://api.put.io/v2"
25
+ #sess.headers['User-Agent'] = 'myapp/1.0'
26
+ #sess.enable_debug "/tmp/patron.debug"
27
+
28
+ require 'net/http'
29
+
30
+ #uri = URI(url(sub))
31
+ #res = Net::HTTP.post_form(uri, data)
32
+ #puts res.body
33
+
34
+ #sess.post url(sub), data
35
+
36
+ uri = URI(url(sub))
37
+ req = Net::HTTP::Post.new(uri.path)
38
+ data['oauth_token'] = access_token
39
+ req.set_form_data(data)
40
+
41
+ res = Net::HTTP.start(uri.hostname, uri.port, :use_ssl => true) do |http|
42
+ puts http.request(req)
43
+ end
44
+ end
45
+
46
+ def files
47
+ get "files/list"
48
+ end
49
+
50
+ def upload(file)
51
+ post "transfers/add", :url => file
52
+ end
53
+
54
+ class << self
55
+ def test
56
+ user = User.first
57
+ api = new(:access_token => user.access_token)
58
+ require 'pp'
59
+ pp api.files
60
+ end
61
+ end
62
+ end
63
+
64
+ #require 'patron'
65
+
66
+ def add_to_putio!(name)
67
+ magnet = TpbWrap.magnet_url(name)
68
+ puts "Magnet: #{magnet}"
69
+
70
+ api = PutioApi.new(:access_token => token)
71
+ api.upload magnet
72
+ end
73
+
74
+ (0...6).each { |x| puts "" }
75
+ add_to_putio! "orphanage"
76
+
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tpb_wrap
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mike Harris
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: mharris_ext
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: nokogiri
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: lre
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: oauth
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: patron
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rspec
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 2.8.0
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 2.8.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: rdoc
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '3.12'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '3.12'
126
+ - !ruby/object:Gem::Dependency
127
+ name: bundler
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: '1.2'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: '1.2'
142
+ - !ruby/object:Gem::Dependency
143
+ name: jeweler
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 1.8.4
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 1.8.4
158
+ description: Wrapper around pirate bay
159
+ email: mharris717@gmail.com
160
+ executables: []
161
+ extensions: []
162
+ extra_rdoc_files:
163
+ - LICENSE.txt
164
+ - README.rdoc
165
+ files:
166
+ - .document
167
+ - .lre
168
+ - .rspec
169
+ - Gemfile
170
+ - Gemfile.lock
171
+ - LICENSE.txt
172
+ - README.rdoc
173
+ - Rakefile
174
+ - VERSION
175
+ - lib/tpb_wrap.rb
176
+ - lib/tpb_wrap/media.rb
177
+ - lib/tpb_wrap/page.rb
178
+ - lib/tpb_wrap/source.rb
179
+ - spec/spec_helper.rb
180
+ - spec/tpb_wrap_spec.rb
181
+ - tpb_wrap.gemspec
182
+ - vol/media_test.rb
183
+ - vol/oauth_test.rb
184
+ - vol/put_pirate_combined_test.rb
185
+ homepage: http://github.com/mharris717/tpb_wrap
186
+ licenses:
187
+ - MIT
188
+ post_install_message:
189
+ rdoc_options: []
190
+ require_paths:
191
+ - lib
192
+ required_ruby_version: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - ! '>='
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
198
+ segments:
199
+ - 0
200
+ hash: 4547120350470715433
201
+ required_rubygems_version: !ruby/object:Gem::Requirement
202
+ none: false
203
+ requirements:
204
+ - - ! '>='
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ requirements: []
208
+ rubyforge_project:
209
+ rubygems_version: 1.8.23
210
+ signing_key:
211
+ specification_version: 3
212
+ summary: Wrapper around pirate bay
213
+ test_files: []