middleman-torrent 0.0.2 → 0.0.3
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 +23 -3
- data/lib/middleman-torrent/version.rb +1 -1
- data/middleman-torrent.gemspec +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49ca47948821e0b5650dd793d5c230fc206d6d6b
|
4
|
+
data.tar.gz: 63673337a805043ba5e11286ee9bc923e4390bf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 916eafe2edbd6e85d5c22f77164d0fc9c3c3719d57b3ed94d89a2d7b6c05b531fbe3bd9eb5d6b6feabc931b752203b7cebdce96182edf39b313992fc42b51ca1
|
7
|
+
data.tar.gz: 2c493339a8d33b18bf68828128df4136e4b58776d64600d30dbfcd1a0fc31be9c6a7d7a847c3a2f32204348a988bf4d04d6e8781caea75f7d49ffb774560f300
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# MiddlemanTorrent
|
2
2
|
|
3
|
-
|
3
|
+
A Middleman extension to bundle your site as a torrent.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -20,7 +20,27 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
Activate it in Middleman's `config.rb` with defaults
|
24
|
+
|
25
|
+
activate :torrent
|
26
|
+
|
27
|
+
or pass it an option
|
28
|
+
|
29
|
+
activate :torrent, file: 'another_torrent_name.torrent'
|
30
|
+
|
31
|
+
Every option with default values:
|
32
|
+
|
33
|
+
# A tracker to announce
|
34
|
+
tracker: 'udp://tracker.publicbt.com:80'
|
35
|
+
|
36
|
+
# Torrent file name
|
37
|
+
file: 'site.torrent'
|
38
|
+
|
39
|
+
# Torrent name and base directory
|
40
|
+
name: 'site'
|
41
|
+
|
42
|
+
# Make torrent private
|
43
|
+
private: false
|
24
44
|
|
25
45
|
## Contributing
|
26
46
|
|
data/middleman-torrent.gemspec
CHANGED
@@ -6,11 +6,11 @@ require 'middleman-torrent/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'middleman-torrent'
|
8
8
|
spec.version = MiddlemanTorrent::VERSION
|
9
|
-
spec.authors = ['
|
10
|
-
spec.email = ['
|
9
|
+
spec.authors = ['En Defensa del Software Libre']
|
10
|
+
spec.email = ['edsl@hackcoop.com.ar']
|
11
11
|
spec.summary = %q{A Middleman extension to bundle your site as a torrent.}
|
12
12
|
spec.description = %q{A Middleman extension to bundle your site as a torrent.}
|
13
|
-
spec.homepage = 'https://github.com/
|
13
|
+
spec.homepage = 'https://github.com/edsl/middleman-torrent'
|
14
14
|
spec.license = 'GPL3'
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-torrent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- En Defensa del Software Libre
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -82,7 +82,7 @@ dependencies:
|
|
82
82
|
version: '0'
|
83
83
|
description: A Middleman extension to bundle your site as a torrent.
|
84
84
|
email:
|
85
|
-
-
|
85
|
+
- edsl@hackcoop.com.ar
|
86
86
|
executables: []
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
@@ -99,7 +99,7 @@ files:
|
|
99
99
|
- middleman-torrent.gemspec
|
100
100
|
- test/minitest_helper.rb
|
101
101
|
- test/test_middleman-torrent.rb
|
102
|
-
homepage: https://github.com/
|
102
|
+
homepage: https://github.com/edsl/middleman-torrent
|
103
103
|
licenses:
|
104
104
|
- GPL3
|
105
105
|
metadata: {}
|