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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0bd83ff50869806b658424f0520c554438159882
4
- data.tar.gz: dc4f45c9f1f23d6309aab231e8da9c50078e69c6
3
+ metadata.gz: f35ca46cbcb9d04716dfa9bf558a86326ac8f0de
4
+ data.tar.gz: 319bc054a9f92649614792792cb36ac421965783
5
5
  SHA512:
6
- metadata.gz: 23d07caf462fd01da2c45257af7a56c7551f8b3222593a47c11ce7938b379d2a9569aa0e82aac2207a6f2a37f452c750ae3d4cafed215f5ff6eade491c2e39ca
7
- data.tar.gz: 033abdc5dc409df7cd547d9682a2190f28fa401e12c74ea6ae05b44561a7f9c9036373a9185483ff5979e39ab0a4cbf51850c1ebb16b92e5b35fa674fb895044
6
+ metadata.gz: 2ce8f76eb4a4ee227c02a9a7b4fb9f0cec139fd16e8cc2c7d5229adb34afe98e03a3af7deb3f597de8081907d93dd796ccca554757c933f094dd23bde22ab1fc
7
+ data.tar.gz: cedd362599caa3ef1b6011893d4db88561232be9dd885b3afea87295d4a875df9be5468dbf8d51290f1f974b1ea7a55b3e0b39e8a9f8caedcd89f7cef94f6142
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.0.9 (2015-06-23)
2
+ ------------------
3
+ * Initial tahoe.cfg.erb template
4
+
1
5
  0.0.8 (2015-06-23)
2
6
  ------------------
3
7
  * Symlink 'tahoe' executable into ~/bin/tahoe
data/lib/fling/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # Simple secret sharing over Tahoe-LAFS
2
2
  module Fling
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.9"
4
4
  end
@@ -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.8
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: {}