fling 0.0.8 → 0.0.9
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/CHANGES.md +4 -0
- data/lib/fling/version.rb +1 -1
- data/templates/tahoe.cfg.erb +30 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f35ca46cbcb9d04716dfa9bf558a86326ac8f0de
|
|
4
|
+
data.tar.gz: 319bc054a9f92649614792792cb36ac421965783
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ce8f76eb4a4ee227c02a9a7b4fb9f0cec139fd16e8cc2c7d5229adb34afe98e03a3af7deb3f597de8081907d93dd796ccca554757c933f094dd23bde22ab1fc
|
|
7
|
+
data.tar.gz: cedd362599caa3ef1b6011893d4db88561232be9dd885b3afea87295d4a875df9be5468dbf8d51290f1f974b1ea7a55b3e0b39e8a9f8caedcd89f7cef94f6142
|
data/CHANGES.md
CHANGED
data/lib/fling/version.rb
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# -*- mode: conf; coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
# This file controls the configuration of the Tahoe node that
|
|
4
|
+
# lives in this directory. It is only read at node startup.
|
|
5
|
+
# For details about the keys that can be set here, please
|
|
6
|
+
# read the 'docs/configuration.rst' file that came with your
|
|
7
|
+
# Tahoe installation.
|
|
8
|
+
|
|
9
|
+
[node]
|
|
10
|
+
nickname = <%= @nickname %>
|
|
11
|
+
web.port = tcp:3456:interface=127.0.0.1
|
|
12
|
+
web.static = public_html
|
|
13
|
+
|
|
14
|
+
[client]
|
|
15
|
+
# Which services should this client connect to?
|
|
16
|
+
introducer.furl = <%= @introducer_furl %>
|
|
17
|
+
|
|
18
|
+
# What encoding parameters should this client use for uploads?
|
|
19
|
+
shares.needed = 3
|
|
20
|
+
shares.happy = 7
|
|
21
|
+
shares.total = 10
|
|
22
|
+
|
|
23
|
+
[storage]
|
|
24
|
+
# Shall this node provide storage service?
|
|
25
|
+
enabled = false
|
|
26
|
+
reserved_space = 1G
|
|
27
|
+
|
|
28
|
+
[helper]
|
|
29
|
+
# Shall this node run a helper service that clients can use?
|
|
30
|
+
enabled = false
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fling
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tony Arcieri
|
|
@@ -147,6 +147,7 @@ files:
|
|
|
147
147
|
- spec/spec_helper.rb
|
|
148
148
|
- tasks/rspec.rake
|
|
149
149
|
- tasks/rubocop.rake
|
|
150
|
+
- templates/tahoe.cfg.erb
|
|
150
151
|
homepage: https://github.com/tarcieri/fling
|
|
151
152
|
licenses: []
|
|
152
153
|
metadata: {}
|