ruby-s3cmd 0.1.3 → 0.1.4
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/lib/ruby-s3cmd/s3cmd.rb +1 -1
- metadata +22 -39
data/lib/ruby-s3cmd/s3cmd.rb
CHANGED
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
|
|
374
374
|
self.instance_variables.each do |i|
|
|
375
375
|
tmp_value = self.instance_variable_get "#{i}"
|
|
376
|
-
tmp_string = i.gsub("_", "-").gsub("@", "--")
|
|
376
|
+
tmp_string = i.to_s.gsub("_", "-").gsub("@", "--")
|
|
377
377
|
unless tmp_string == "--path-to-s3cmd"
|
|
378
378
|
if (tmp_value.is_a? TrueClass) || (tmp_value.is_a? FalseClass)
|
|
379
379
|
ostring += "#{tmp_string} "
|
metadata
CHANGED
|
@@ -1,32 +1,22 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-s3cmd
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 1
|
|
8
|
-
- 3
|
|
9
|
-
version: 0.1.3
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.4
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Joel Bryan Juliano
|
|
13
9
|
autorequire:
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
date: 2012-06-13 00:00:00 +08:00
|
|
18
|
-
default_executable:
|
|
12
|
+
date: 2012-07-04 00:00:00.000000000 Z
|
|
19
13
|
dependencies: []
|
|
20
|
-
|
|
21
14
|
description: A gem providing a ruby interface to s3cmd Amazon S3 client.
|
|
22
15
|
email: joelbryan.juliano@gmail.com
|
|
23
16
|
executables: []
|
|
24
|
-
|
|
25
17
|
extensions: []
|
|
26
|
-
|
|
27
18
|
extra_rdoc_files: []
|
|
28
|
-
|
|
29
|
-
files:
|
|
19
|
+
files:
|
|
30
20
|
- README
|
|
31
21
|
- Changelog
|
|
32
22
|
- MIT-LICENSE
|
|
@@ -36,35 +26,28 @@ files:
|
|
|
36
26
|
- lib/ruby-s3cmd/s3cmd.rb
|
|
37
27
|
- test/test_ruby_s3cmd.rb
|
|
38
28
|
- test/test_helper.rb
|
|
39
|
-
|
|
40
|
-
homepage: http://github.com/jjuliano/ruby-s3cmd
|
|
29
|
+
homepage: http://jjuliano.github.com/ruby-s3cmd
|
|
41
30
|
licenses: []
|
|
42
|
-
|
|
43
31
|
post_install_message:
|
|
44
32
|
rdoc_options: []
|
|
45
|
-
|
|
46
|
-
require_paths:
|
|
33
|
+
require_paths:
|
|
47
34
|
- lib
|
|
48
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
requirements:
|
|
57
|
-
- -
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
|
|
60
|
-
- 0
|
|
61
|
-
version: "0"
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
none: false
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
62
47
|
requirements: []
|
|
63
|
-
|
|
64
48
|
rubyforge_project:
|
|
65
|
-
rubygems_version: 1.
|
|
49
|
+
rubygems_version: 1.8.24
|
|
66
50
|
signing_key:
|
|
67
51
|
specification_version: 3
|
|
68
52
|
summary: A gem providing a ruby interface to s3cmd Amazon S3 client.
|
|
69
53
|
test_files: []
|
|
70
|
-
|