s3-sync 1.2.6
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/History.txt +184 -0
- data/README.rdoc +318 -0
- data/bin/s3cmd +338 -0
- data/bin/s3sync +731 -0
- data/lib/s3sync.rb +39 -0
- data/lib/s3sync/HTTPStreaming.rb +107 -0
- data/lib/s3sync/S3.rb +714 -0
- data/lib/s3sync/S3_s3sync_mod.rb +143 -0
- data/lib/s3sync/S3encoder.rb +50 -0
- data/lib/s3sync/s3config.rb +27 -0
- data/lib/s3sync/s3try.rb +178 -0
- data/lib/s3sync/thread_generator.rb +383 -0
- data/test/test_helper.rb +3 -0
- data/test/test_s3sync.rb +11 -0
- metadata +67 -0
data/test/test_helper.rb
ADDED
data/test/test_s3sync.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: s3-sync
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.2.6
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Davide D'Agostino
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-09-28 00:00:00 +02:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description:
|
|
17
|
+
email: d.dagostino@lipsiasoft.com
|
|
18
|
+
executables:
|
|
19
|
+
- s3cmd
|
|
20
|
+
- s3sync
|
|
21
|
+
extensions: []
|
|
22
|
+
|
|
23
|
+
extra_rdoc_files: []
|
|
24
|
+
|
|
25
|
+
files:
|
|
26
|
+
- README.rdoc
|
|
27
|
+
- History.txt
|
|
28
|
+
- lib/s3sync/HTTPStreaming.rb
|
|
29
|
+
- lib/s3sync/S3.rb
|
|
30
|
+
- lib/s3sync/S3_s3sync_mod.rb
|
|
31
|
+
- lib/s3sync/s3config.rb
|
|
32
|
+
- lib/s3sync/S3encoder.rb
|
|
33
|
+
- lib/s3sync/s3try.rb
|
|
34
|
+
- lib/s3sync/thread_generator.rb
|
|
35
|
+
- lib/s3sync.rb
|
|
36
|
+
- test/test_helper.rb
|
|
37
|
+
- test/test_s3sync.rb
|
|
38
|
+
has_rdoc: true
|
|
39
|
+
homepage: http://s3sync.net
|
|
40
|
+
licenses: []
|
|
41
|
+
|
|
42
|
+
post_install_message:
|
|
43
|
+
rdoc_options: []
|
|
44
|
+
|
|
45
|
+
require_paths:
|
|
46
|
+
- lib
|
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: "0"
|
|
52
|
+
version:
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: "0"
|
|
58
|
+
version:
|
|
59
|
+
requirements: []
|
|
60
|
+
|
|
61
|
+
rubyforge_project: s3-sync
|
|
62
|
+
rubygems_version: 1.3.5
|
|
63
|
+
signing_key:
|
|
64
|
+
specification_version: 3
|
|
65
|
+
summary: This is a ruby program that easily transfers directories between a local directory and an S3 bucket:prefix. It behaves somewhat, but not precisely, like the rsync program. In particular, it shares rsync's peculiar behavior that trailing slashes on the source side are meaningful. See examples below.
|
|
66
|
+
test_files: []
|
|
67
|
+
|