s3cp 0.1.6 → 0.1.7
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 +6 -1
- data/lib/s3cp/s3cat.rb +1 -1
- data/lib/s3cp/s3cp.rb +1 -1
- data/lib/s3cp/version.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
data/lib/s3cp/s3cat.rb
CHANGED
@@ -51,7 +51,7 @@ fail "Your URL looks funny, doesn't it?" unless @bucket
|
|
51
51
|
if options[:tty]
|
52
52
|
# store contents to file to display with PAGER
|
53
53
|
file = Tempfile.new('s3cat')
|
54
|
-
out = File.new(file.path, File::CREAT|File::
|
54
|
+
out = File.new(file.path, File::CREAT|File::O_WRONLY)
|
55
55
|
begin
|
56
56
|
@s3.get(@bucket, @prefix) do |chunk|
|
57
57
|
out.write(chunk)
|
data/lib/s3cp/s3cp.rb
CHANGED
@@ -160,7 +160,7 @@ end
|
|
160
160
|
|
161
161
|
def s3_to_local(bucket_from, key_from, dest)
|
162
162
|
log("Copy s3://#{bucket_from}/#{key_from} to #{dest}")
|
163
|
-
f = File.new(dest, File::CREAT|File::
|
163
|
+
f = File.new(dest, File::CREAT|File::O_WRONLY)
|
164
164
|
begin
|
165
165
|
@s3.interface.get(bucket_from, key_from) do |chunk|
|
166
166
|
f.write(chunk)
|
data/lib/s3cp/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: s3cp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 7
|
10
|
+
version: 0.1.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alex Boisvert
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-12-
|
18
|
+
date: 2011-12-29 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
requirement: &id001 !ruby/object:Gem::Requirement
|