feed_torrents 0.1.0 → 0.1.1
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 +1 -5
- data/feed_torrents.gemspec +7 -7
- data/lib/feed_torrents/version.rb +1 -2
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 003f8e715f86b8730d67f4695a8e44e75ee55b99
|
4
|
+
data.tar.gz: cf9ff0f9c27205bd631576a4ff7ee7bdb346047b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d26020c9225aaea0407f7d3c92f49d55168dd38f62cfc30d2dfbef8972ed004e02baa0b959e96e290eb2dfb80647267c6345f344357ef89555d5d2b27a969908
|
7
|
+
data.tar.gz: 0b9fada33bed6fe620f10e37f83b61d5895bc45075c5d27a65a7437d1ddbbd326496284d538e5389ce12fad4db57b4ace3bdd9fdc7f2e099c8dd89755dc9778c
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# FeedTorrents
|
2
2
|
|
3
|
-
[](http://badge.fury.io/rb/feed_torrents)
|
4
4
|
|
5
5
|
## Install
|
6
6
|
|
@@ -8,10 +8,6 @@ Install with Rubygems:
|
|
8
8
|
|
9
9
|
gem install feed_torrents
|
10
10
|
|
11
|
-
If you use bundler, add it to your Gemfile:
|
12
|
-
|
13
|
-
gem "feed_torrents", "~>0.1.0"
|
14
|
-
|
15
11
|
## Usage
|
16
12
|
|
17
13
|
Create a configuration file: /tmp/feed_torrents.yml
|
data/feed_torrents.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
require File.expand_path('../lib/feed_torrents/version', __FILE__)
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
|
-
gem.name =
|
4
|
+
gem.name = 'feed_torrents'
|
5
5
|
gem.version = FeedTorrents::VERSION
|
6
|
-
gem.summary = %q{
|
7
|
-
gem.description = %q{
|
8
|
-
gem.license =
|
9
|
-
gem.authors = [
|
10
|
-
gem.email =
|
11
|
-
gem.homepage =
|
6
|
+
gem.summary = %q{A (multi) torrent feed reader without gui that handles both torrent links and magnet links downloading them as torrents}
|
7
|
+
gem.description = %q{A (multi) torrent feed reader without gui that handles both torrent links and magnet links downloading them as torrents}
|
8
|
+
gem.license = 'MIT'
|
9
|
+
gem.authors = ['Tom van Leeuwen']
|
10
|
+
gem.email = 'tom@vleeuwen.eu'
|
11
|
+
gem.homepage = 'https://github.com/TvL2386/feed_torrents'
|
12
12
|
|
13
13
|
gem.files = `git ls-files`.split($/)
|
14
14
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: feed_torrents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom van Leeuwen
|
@@ -122,7 +122,8 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0.2'
|
125
|
-
description:
|
125
|
+
description: A (multi) torrent feed reader without gui that handles both torrent links
|
126
|
+
and magnet links downloading them as torrents
|
126
127
|
email: tom@vleeuwen.eu
|
127
128
|
executables:
|
128
129
|
- feed_torrents
|
@@ -152,7 +153,7 @@ files:
|
|
152
153
|
- lib/feed_torrents/version.rb
|
153
154
|
- spec/feed_torrents_spec.rb
|
154
155
|
- spec/spec_helper.rb
|
155
|
-
homepage: https://
|
156
|
+
homepage: https://github.com/TvL2386/feed_torrents
|
156
157
|
licenses:
|
157
158
|
- MIT
|
158
159
|
metadata: {}
|
@@ -175,7 +176,8 @@ rubyforge_project:
|
|
175
176
|
rubygems_version: 2.2.0
|
176
177
|
signing_key:
|
177
178
|
specification_version: 4
|
178
|
-
summary:
|
179
|
+
summary: A (multi) torrent feed reader without gui that handles both torrent links
|
180
|
+
and magnet links downloading them as torrents
|
179
181
|
test_files:
|
180
182
|
- spec/feed_torrents_spec.rb
|
181
183
|
- spec/spec_helper.rb
|