cloud_encrypted_sync 0.3.4 → 0.3.5
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.
- data/README.md +8 -4
- data/cloud_encrypted_sync.gemspec +2 -0
- data/lib/cloud_encrypted_sync/version.rb +2 -2
- metadata +19 -3
data/README.md
CHANGED
|
@@ -13,10 +13,14 @@ too.
|
|
|
13
13
|
gem install cloud_encrypted_sync
|
|
14
14
|
|
|
15
15
|
In addition to this gem you'll also need to install an adapter gem for the particular cloud
|
|
16
|
-
you want to backup to. At the time of this writing, the
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
you want to backup to. At the time of this writing, the author has provided two adapters, one
|
|
17
|
+
for Amazon S3 ([cloud_encrypted_sync_s3_adapter](https://github.com/jsgarvin/cloud_encrypted_sync_s3_adapter))
|
|
18
|
+
and one for local filesystems ([cloud_encrypted_sync_filesystem_adapter](https://github.com/jsgarvin/cloud_encrypted_sync_filesystem_adapter))
|
|
19
|
+
which has been tested to work with [Ubuntu One](https://one.ubuntu.com/referrals/referee/2304745/)
|
|
20
|
+
and [Dropbox](http://db.tt/X7KUvsGn "Dropbox") folders, and should work well with any other cloud
|
|
21
|
+
storage service that uses similar "magic" folders on the local file system. In addition, anyone can
|
|
22
|
+
create an adapter to work with other clouds. Search rubygems.org for "cloud encrypted sync" to find
|
|
23
|
+
out if someone has already created an adapter for your preferred cloud.
|
|
20
24
|
|
|
21
25
|
## Getting started
|
|
22
26
|
|
|
@@ -10,6 +10,8 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.summary = %q{Encrypted sync of folder contents to/from cloud storage.}
|
|
11
11
|
s.description = %q{Encrypted sync of folder contents to/from cloud storage with user controlled encryption keys.}
|
|
12
12
|
|
|
13
|
+
s.add_dependency('activesupport')
|
|
14
|
+
|
|
13
15
|
s.add_development_dependency('mocha')
|
|
14
16
|
s.add_development_dependency('simplecov')
|
|
15
17
|
s.add_development_dependency('fakefs')
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module CloudEncryptedSync
|
|
2
|
-
VERSION = '0.3.
|
|
3
|
-
end
|
|
2
|
+
VERSION = '0.3.5'
|
|
3
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloud_encrypted_sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,8 +9,24 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-12-31 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: activesupport
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
14
30
|
- !ruby/object:Gem::Dependency
|
|
15
31
|
name: mocha
|
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -131,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
147
|
version: '0'
|
|
132
148
|
requirements: []
|
|
133
149
|
rubyforge_project:
|
|
134
|
-
rubygems_version: 1.8.
|
|
150
|
+
rubygems_version: 1.8.25
|
|
135
151
|
signing_key:
|
|
136
152
|
specification_version: 3
|
|
137
153
|
summary: Encrypted sync of folder contents to/from cloud storage.
|