fling 0.0.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/README.md +47 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/fling.gemspec +23 -0
- data/lib/fling/version.rb +3 -0
- data/lib/fling.rb +5 -0
- metadata +83 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: dab46f2af38a530cb411e37f7250857671a11015
|
4
|
+
data.tar.gz: 255c405c06072a992d6155f2617ceb0bb0210c40
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 704f9f0bad377f1d6d90ff79368910abc49ffc30e97131b802898c8c59786e8dae74b161eebab3c5067003e00153b4139aa92a1b01c7941ed1d4dc670165d921
|
7
|
+
data.tar.gz: 2487c2a8c47ca6bdfc0daaefeec53ff65718d3eb3781322a4e90685137e0450cda7cc3db73d8d750faa379bfeb79285e510f558e983bd8231f0dbfa277f48bea
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
Fling
|
2
|
+
=====
|
3
|
+
|
4
|
+
Simple secret sharing over Tahoe-LAFS.
|
5
|
+
|
6
|
+
Fling is a system for automating the exchange of files and directories over
|
7
|
+
Tahoe-LAFS, a distributed encrypted filesystem.
|
8
|
+
|
9
|
+
## Is it any good?
|
10
|
+
|
11
|
+
[Yes](http://news.ycombinator.com/item?id=3067434)
|
12
|
+
|
13
|
+
## Prerequisites
|
14
|
+
|
15
|
+
Fling is developed for usage on Mac OS X. Support for other operating systems
|
16
|
+
forthcoming. PRs accepted!
|
17
|
+
|
18
|
+
Fling supports the following versions of Ruby:
|
19
|
+
|
20
|
+
* MRI 2.2.2
|
21
|
+
* JRuby 1.7.19
|
22
|
+
|
23
|
+
Other versions of Ruby may work, but the preceeding are what are supported.
|
24
|
+
|
25
|
+
## Installation
|
26
|
+
|
27
|
+
First you must install a version of Ruby described in the Prerequisites.
|
28
|
+
|
29
|
+
Or install it yourself as:
|
30
|
+
|
31
|
+
$ gem install fling
|
32
|
+
|
33
|
+
## Usage
|
34
|
+
|
35
|
+
Coming soon!
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
* Fork this repository on github
|
40
|
+
* Make your changes and send us a pull request
|
41
|
+
* If we like them we'll merge them
|
42
|
+
* If we've accepted a patch, feel free to ask for commit access
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
Copyright (c) 2015 Tony Arcieri. Distributed under the MIT License. See
|
47
|
+
LICENSE.txt for further details.
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "fling"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/fling.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fling/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "fling"
|
8
|
+
spec.version = Fling::VERSION
|
9
|
+
spec.authors = ["Tony Arcieri"]
|
10
|
+
spec.email = ["bascule@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Simple secret sharing over Tahoe-LAFS"
|
13
|
+
spec.description = "Fling is a system for automating the exchange of files and directories over Tahoe-LAFS, a distributed encrypted filesystem."
|
14
|
+
spec.homepage = "https://github.com/tarcieri/fling"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.9"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
data/lib/fling.rb
ADDED
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fling
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tony Arcieri
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-04-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Fling is a system for automating the exchange of files and directories
|
42
|
+
over Tahoe-LAFS, a distributed encrypted filesystem.
|
43
|
+
email:
|
44
|
+
- bascule@gmail.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- ".rspec"
|
51
|
+
- ".travis.yml"
|
52
|
+
- Gemfile
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- bin/console
|
56
|
+
- bin/setup
|
57
|
+
- fling.gemspec
|
58
|
+
- lib/fling.rb
|
59
|
+
- lib/fling/version.rb
|
60
|
+
homepage: https://github.com/tarcieri/fling
|
61
|
+
licenses: []
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.4.6
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Simple secret sharing over Tahoe-LAFS
|
83
|
+
test_files: []
|