ruby-s3cmd 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Changelog +47 -0
- data/MIT-LICENSE +21 -0
- data/README +19 -0
- data/lib/ruby-s3cmd/s3cmd.rb +740 -0
- data/lib/ruby-s3cmd/version.rb +10 -0
- data/lib/ruby-s3cmd.rb +12 -0
- data/setup.rb +1585 -0
- data/test/test_helper.rb +2 -0
- data/test/test_ruby_s3cmd.rb +11 -0
- metadata +75 -0
data/Changelog
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
commit dc9430c54968dd5c0d9ec665f7d12c4fa0be142a
|
2
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
3
|
+
Date: Tue Dec 28 15:11:50 2010 +0800
|
4
|
+
|
5
|
+
Fix comments and documentations
|
6
|
+
|
7
|
+
commit 8e2c880131ea108695d6f8dd9e59cca0973c58ec
|
8
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
9
|
+
Date: Tue Dec 28 13:09:10 2010 +0800
|
10
|
+
|
11
|
+
Removed the yardoc documentations
|
12
|
+
|
13
|
+
commit 447bf1cb796f3601ba1809e09045f443d724dbee
|
14
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
15
|
+
Date: Tue Dec 28 12:29:02 2010 +0800
|
16
|
+
|
17
|
+
Added yardoc API documentation
|
18
|
+
|
19
|
+
commit 20174fe74c38d47dc7b5ae5d9d673e68ca085a2c
|
20
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
21
|
+
Date: Tue Dec 28 12:27:27 2010 +0800
|
22
|
+
|
23
|
+
bump to version 0.1.1
|
24
|
+
|
25
|
+
commit 914690cbaee71217f78deeb48a204ffe8c098bcc
|
26
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
27
|
+
Date: Tue Dec 28 11:55:44 2010 +0800
|
28
|
+
|
29
|
+
changed the version module name
|
30
|
+
|
31
|
+
commit f1655df0fd2b0fa0e7b313d6140814220f468654
|
32
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
33
|
+
Date: Mon Dec 27 19:52:32 2010 +0000
|
34
|
+
|
35
|
+
Added basic usage instructions
|
36
|
+
|
37
|
+
commit dcda2467fc9f4b51807ac94898f252454500ad7f
|
38
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
39
|
+
Date: Mon Dec 27 19:15:24 2010 +0000
|
40
|
+
|
41
|
+
Added github page as homepage in gemspec
|
42
|
+
|
43
|
+
commit 164d7524024ec1f7ccd9d308943b3d8790a61316
|
44
|
+
Author: Joel Bryan Juliano <jjuliano@clinic-it.com>
|
45
|
+
Date: Mon Dec 27 19:10:30 2010 +0000
|
46
|
+
|
47
|
+
Initial Commit
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2011 Joel Bryan Juliano <joelbryan.juliano@gmail.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
README for ruby-s3cmd
|
2
|
+
=====================
|
3
|
+
|
4
|
+
Ruby-s3cmd is a gem providing a ruby interface to s3cmd Amazon S3 client.
|
5
|
+
|
6
|
+
To install, type 'gem install ruby-s3cmd'
|
7
|
+
|
8
|
+
Usage:
|
9
|
+
|
10
|
+
require 'rubygems'
|
11
|
+
require 'ruby-s3cmd'
|
12
|
+
|
13
|
+
s3cmd = RubyS3Cmd::S3Cmd.new
|
14
|
+
s3cmd.exclude = "*.jpg"
|
15
|
+
s3cmd.rinclude = "[0-9].*.jpg"
|
16
|
+
s3cmd.show_config
|
17
|
+
=> "s3cmd --exclude *.jpg --rinclude [0-9].*.jpg "
|
18
|
+
s3cmd.sync("/local/path", "s3://test-bucket/backup/")
|
19
|
+
|