middleman-torrent 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af1e74ee90e0e9ba264d7b034f24ca30d3ce8d5c
4
- data.tar.gz: e5d7daed6f49cc70716394aa7e3c1015d27c18b6
3
+ metadata.gz: 49ca47948821e0b5650dd793d5c230fc206d6d6b
4
+ data.tar.gz: 63673337a805043ba5e11286ee9bc923e4390bf8
5
5
  SHA512:
6
- metadata.gz: 0e852722294e17b29fdb3e6eece82b67d4f9db8045d65781eb3f8c93ee8767bc75559ff9929d805f482ba0fbc740d6819fd2e6fbe9f41a48d8899703e519bca3
7
- data.tar.gz: 695232f5bd554b143aed7d08754777ca4957ea0fa6c7048d2795ab2306fbc9d99a7dada7cdb0c0873e89ba98e00133b25dbf7f29fec50de0e657a33415acb2e4
6
+ metadata.gz: 916eafe2edbd6e85d5c22f77164d0fc9c3c3719d57b3ed94d89a2d7b6c05b531fbe3bd9eb5d6b6feabc931b752203b7cebdce96182edf39b313992fc42b51ca1
7
+ data.tar.gz: 2c493339a8d33b18bf68828128df4136e4b58776d64600d30dbfcd1a0fc31be9c6a7d7a847c3a2f32204348a988bf4d04d6e8781caea75f7d49ffb774560f300
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Middleman::Torrent
1
+ # MiddlemanTorrent
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
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
 
@@ -1,3 +1,3 @@
1
1
  module MiddlemanTorrent
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
@@ -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 = ['Mauricio Pasquier Juan']
10
- spec.email = ['mauricio@pasquierjuan.com.ar']
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/mauriciopasquier/middleman-torrent'
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
- - Mauricio Pasquier Juan
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
- - mauricio@pasquierjuan.com.ar
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/mauriciopasquier/middleman-torrent
102
+ homepage: https://github.com/edsl/middleman-torrent
103
103
  licenses:
104
104
  - GPL3
105
105
  metadata: {}