lenc 1.1.1 → 1.1.2
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/CHANGELOG.txt +5 -0
- data/{README.txt → README.md} +16 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9ce6a4fc8b6c84fa002e82abda1e1f736c9e893
|
4
|
+
data.tar.gz: b7a33e7faac481c0aa8525970c4fce8e3d8bc88e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2110c704af356d26953cd3fdf7adb7c15bf045464e66d195724e3c45359eba9aa77f117e8ebbed9a9edd06658ec50a578187aca2c740715c1ecb68554729f62a
|
7
|
+
data.tar.gz: ae79cf0f60550963f8eab2eb1db540682230ecebef1e3466441d3f60ee420788c4e6b4bbf05ba94511a35ee13f43438719dd2bef08bf9a21aacd16af05748094
|
data/CHANGELOG.txt
CHANGED
data/{README.txt → README.md}
RENAMED
@@ -1,12 +1,14 @@
|
|
1
|
-
# @markup markdown
|
2
1
|
|
3
2
|
Lenc
|
4
3
|
===========
|
5
4
|
|
6
|
-
|
5
|
+
LEnc is a Ruby gem that maintains encrypted repositories of files, enabling secure, encrypted
|
7
6
|
backups to free cloud services such as Dropbox, Google Drive, and Microsoft SkyDrive.
|
8
7
|
|
9
|
-
Written
|
8
|
+
Written by Jeff Sember, March 2013.
|
9
|
+
|
10
|
+
[Source code documentation can be found here.](http://rubydoc.info/gems/lenc/frames)
|
11
|
+
|
10
12
|
|
11
13
|
Directory structure
|
12
14
|
--------
|
@@ -33,28 +35,28 @@ Running the program
|
|
33
35
|
|
34
36
|
The program can be asked to perform one of the following tasks:
|
35
37
|
|
36
|
-
|
38
|
+
__Setting up a repository.__ Select a directory you wish to be the \<source\>
|
37
39
|
directory, and make it the current directory. Type:
|
38
40
|
|
39
|
-
|
41
|
+
lencrypt -i KEY ENCDIR
|
40
42
|
|
41
43
|
with KEY a set of characters (8 to 56 letters) to be used as the encryption key,
|
42
44
|
and ENCDIR the name of the \<encrypted\> directory (it must not already exist, and
|
43
45
|
it cannot lie within the current directory's tree).
|
44
46
|
|
45
47
|
|
46
|
-
|
48
|
+
__Updating a repository.__ From within a \<source\> directory tree, type:
|
47
49
|
|
48
|
-
|
50
|
+
lencrypt
|
49
51
|
|
50
52
|
You will be prompted for the encryption key, and then the program will examine
|
51
53
|
which files within the \<source\> directory have been changed (since the repository
|
52
54
|
was created or last updated), and re-encrypt these into the \<encrypted\> directory.
|
53
55
|
|
54
56
|
|
55
|
-
|
57
|
+
__Recovering encrypted files.__ Type:
|
56
58
|
|
57
|
-
|
59
|
+
lencrypt -r KEY ENCDIR RECDIR
|
58
60
|
|
59
61
|
with KEY the key associated with a repository whose encrypted files are stored in ENCDIR.
|
60
62
|
The recovered files will be stored in RECDIR.
|
@@ -74,7 +76,7 @@ ignored. Example:
|
|
74
76
|
|
75
77
|
# This is a comment
|
76
78
|
#
|
77
|
-
|
79
|
+
log
|
78
80
|
*.mp3
|
79
81
|
_SKIP_*
|
80
82
|
|
@@ -98,7 +100,7 @@ The format of ignore files is similar to that of .gitignore files. Details:
|
|
98
100
|
* If the pattern contains any path separators, then the wildcards '*', '?' will not
|
99
101
|
match the path separator.
|
100
102
|
|
101
|
-
|
102
|
-
|
103
|
-
At present, the program will ignore any files (or directories) that are symbolic links.
|
104
|
-
|
103
|
+
Miscellaneous Issues
|
104
|
+
-------
|
105
|
+
* At present, the program will ignore any files (or directories) that are symbolic links.
|
106
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lenc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Sember
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-04-
|
11
|
+
date: 2013-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: "Encrypts a set of local files, and copies the encrypted versions to
|
14
14
|
a repository, \nwhich may be located within a free cloud service (Dropbox, Google
|
@@ -30,7 +30,7 @@ files:
|
|
30
30
|
- lib/lenc/trollop.rb
|
31
31
|
- bin/lencrypt
|
32
32
|
- CHANGELOG.txt
|
33
|
-
- README.
|
33
|
+
- README.md
|
34
34
|
- test/test.rb
|
35
35
|
homepage: http://www.cs.ubc.ca/~jpsember/
|
36
36
|
licenses:
|