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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f09c6e3e0d5b6ce0ebb95fe5a2b7f24a672601d
4
- data.tar.gz: a5e5dd2ac1ea3c34f2a96fb5568381d4a1368803
3
+ metadata.gz: d9ce6a4fc8b6c84fa002e82abda1e1f736c9e893
4
+ data.tar.gz: b7a33e7faac481c0aa8525970c4fce8e3d8bc88e
5
5
  SHA512:
6
- metadata.gz: a54fe2806c2703d53770abfcf3eedfd66ef0c7d714683de2e15644c6053ead25a83da08ea272a84c059de5208bccd65161aa0618e68e605326e5fe449992b389
7
- data.tar.gz: eb0aec9260ed9fd7d5f771cc11cb48845746dc58ec9d68399d2912f1e428fdef1a8e2c94e1a80c50a6285237891083114127a103951867e568a682eeda13611e
6
+ metadata.gz: 2110c704af356d26953cd3fdf7adb7c15bf045464e66d195724e3c45359eba9aa77f117e8ebbed9a9edd06658ec50a578187aca2c740715c1ecb68554729f62a
7
+ data.tar.gz: ae79cf0f60550963f8eab2eb1db540682230ecebef1e3466441d3f60ee420788c4e6b4bbf05ba94511a35ee13f43438719dd2bef08bf9a21aacd16af05748094
data/CHANGELOG.txt CHANGED
@@ -14,3 +14,8 @@
14
14
  * Now omitting symlink'd files (it used to fail upon encountering these)
15
15
  * Added ability to provide update password as command line argument (i.e. lencrypt <pwd>)
16
16
 
17
+ 2013-04-09
18
+ * 1.1.2 released
19
+ * Now hosting on GitHub
20
+ * Updated README file
21
+
@@ -1,12 +1,14 @@
1
- # @markup markdown
2
1
 
3
2
  Lenc
4
3
  ===========
5
4
 
6
- A Ruby Gem that maintains encrypted repositories of files, enabling secure, encrypted
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 and (c) by Jeff Sember, March 2013.
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
- 1) Setting up a repository. Select a directory you wish to be the \<source\>
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
- lencrypt -i KEY ENCDIR
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
- 2) Updating a repository. From within a \<source\> directory tree, type:
48
+ __Updating a repository.__ From within a \<source\> directory tree, type:
47
49
 
48
- lencrypt
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
- 3) Recovering encrypted files. Type:
57
+ __Recovering encrypted files.__ Type:
56
58
 
57
- lencrypt -r KEY ENCDIR RECDIR
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
- log
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
- Miscellaneous Issues
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.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-08 00:00:00.000000000 Z
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.txt
33
+ - README.md
34
34
  - test/test.rb
35
35
  homepage: http://www.cs.ubc.ca/~jpsember/
36
36
  licenses: