transmission-rss 0.1.23 → 0.1.24

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2c005330a93788580fcba9c51ea29b470e57e2c9
4
+ data.tar.gz: 6b708fa837943e8a18dbf6cd562e4150d020f6ab
5
+ SHA512:
6
+ metadata.gz: f74bf5288da8eba637d85e1fc5f4da5ceb71679db3ab663b9fa748a151e0f6920c7aa3254b27992885e8078270f34638c385bb3ba222c2e7d8b982bfcf515a44
7
+ data.tar.gz: ad84d3c2b0d3c9885e2f58551b59afc0b37b9d78949974582141ee44564c8f4025d0326d4072be97c2a095e0b4a9be03111c06a7f0da81d36afd92a617b50983
data/README.md CHANGED
@@ -33,7 +33,10 @@ Installation
33
33
  Configuration
34
34
  -------------
35
35
 
36
- A yaml formatted config file is expected at `/etc/transmission-rss.conf`.
36
+ A yaml formatted config file is expected at `/etc/transmission-rss.conf`. Users
37
+ can override some options for their transmission-rss instances by providing a
38
+ config at `~/.config/transmission-rss/config.yml` (or in `$XDG_CONFIG_HOME`
39
+ instead of `~/.config`).
37
40
 
38
41
  ### Minimal example
39
42
 
@@ -89,3 +92,26 @@ transmission is configured for HTTP basic authentication.
89
92
  fork: false
90
93
 
91
94
  pid_file: false
95
+
96
+ Daemonized Startup
97
+ ------------------
98
+
99
+ The following content can be saved into
100
+ `/etc/systemd/system/transmission-rss.service` to create a systemd unit.
101
+ Remember checking the path in `ExecStart`.
102
+
103
+ [Unit]
104
+ Description=Transmission RSS daemon.
105
+ After=network.target transmission-daemon.service
106
+
107
+ [Service]
108
+ Type=forking
109
+ ExecStart=/usr/local/bin/transmission-rss -f
110
+ ExecReload=/bin/kill -s HUP $MAINPID
111
+
112
+ [Install]
113
+ WantedBy=multi-user.target
114
+
115
+ The unit files are reloaded by `systemctl daemon-reload`. You can then start
116
+ transmission-rss by running `systemctl start transmission-rss`. Starting on
117
+ boot, can be enabled `systemctl enable transmission-rss`.
@@ -137,7 +137,7 @@ module TransmissionRSS
137
137
  def decompress(string)
138
138
  Zlib::GzipReader.new(StringIO.new(string)).read
139
139
  rescue Zlib::GzipFile::Error, Zlib::Error
140
- # Ignore if not gzipped
140
+ string
141
141
  end
142
142
  end
143
143
  end
@@ -1,3 +1,3 @@
1
1
  module TransmissionRSS
2
- VERSION = '0.1.23'
2
+ VERSION = '0.1.24'
3
3
  end
metadata CHANGED
@@ -1,41 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transmission-rss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.23
5
- prerelease:
4
+ version: 0.1.24
6
5
  platform: ruby
7
6
  authors:
8
7
  - henning mueller
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-08-05 00:00:00.000000000 Z
11
+ date: 2015-08-24 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: open_uri_redirections
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0.1'
22
- - - ! '>='
20
+ - - ">="
23
21
  - !ruby/object:Gem::Version
24
22
  version: 0.1.4
25
23
  type: :runtime
26
24
  prerelease: false
27
25
  version_requirements: !ruby/object:Gem::Requirement
28
- none: false
29
26
  requirements:
30
- - - ~>
27
+ - - "~>"
31
28
  - !ruby/object:Gem::Version
32
29
  version: '0.1'
33
- - - ! '>='
30
+ - - ">="
34
31
  - !ruby/object:Gem::Version
35
32
  version: 0.1.4
36
- description: ! "transmission-rss is basically a workaround for\n transmission's
37
- lack of the ability to monitor RSS feeds and\n automatically add enclosed torrent
38
- links. Devoted to Ann."
33
+ description: |-
34
+ transmission-rss is basically a workaround for
35
+ transmission's lack of the ability to monitor RSS feeds and
36
+ automatically add enclosed torrent links. Devoted to Ann.
39
37
  email: henning@orgizm.net
40
38
  executables:
41
39
  - transmission-add-file
@@ -43,41 +41,40 @@ executables:
43
41
  extensions: []
44
42
  extra_rdoc_files: []
45
43
  files:
44
+ - README.md
46
45
  - bin/transmission-add-file
47
46
  - bin/transmission-rss
48
47
  - lib/transmission-rss.rb
49
- - lib/transmission-rss/config.rb
50
- - lib/transmission-rss/log.rb
48
+ - lib/transmission-rss/aggregator.rb
49
+ - lib/transmission-rss/callback.rb
51
50
  - lib/transmission-rss/client.rb
51
+ - lib/transmission-rss/config.rb
52
52
  - lib/transmission-rss/hash.rb
53
+ - lib/transmission-rss/log.rb
53
54
  - lib/transmission-rss/version.rb
54
- - lib/transmission-rss/aggregator.rb
55
- - lib/transmission-rss/callback.rb
56
- - README.md
57
55
  - transmission-rss.conf.example
58
56
  homepage: https://rubygems.org/gems/transmission-rss
59
57
  licenses:
60
58
  - GPL-3.0
59
+ metadata: {}
61
60
  post_install_message:
62
61
  rdoc_options: []
63
62
  require_paths:
64
63
  - lib
65
64
  required_ruby_version: !ruby/object:Gem::Requirement
66
- none: false
67
65
  requirements:
68
- - - ! '>='
66
+ - - ">="
69
67
  - !ruby/object:Gem::Version
70
68
  version: '0'
71
69
  required_rubygems_version: !ruby/object:Gem::Requirement
72
- none: false
73
70
  requirements:
74
- - - ! '>='
71
+ - - ">="
75
72
  - !ruby/object:Gem::Version
76
73
  version: '0'
77
74
  requirements: []
78
75
  rubyforge_project:
79
- rubygems_version: 1.8.23.2
76
+ rubygems_version: 2.4.5.1
80
77
  signing_key:
81
- specification_version: 3
78
+ specification_version: 4
82
79
  summary: Adds torrents from rss feeds to transmission web frontend.
83
80
  test_files: []