ruby-s3cmd 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -283,7 +283,7 @@
283
283
 
284
284
  # Delete file from bucket
285
285
  def del(bucket) # s3://BUCKET/OBJECT
286
- send_command "del"
286
+ send_command "del", bucket
287
287
  end
288
288
 
289
289
  # Backup a directory tree to S3
@@ -2,7 +2,7 @@ module RubyS3Cmd #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 5
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/setup.rb CHANGED
@@ -785,7 +785,7 @@ class ToplevelInstaller
785
785
  else
786
786
  require 'rbconfig'
787
787
  end
788
- ::Config::CONFIG
788
+ ::RbConfig::CONFIG
789
789
  end
790
790
 
791
791
  def initialize(ardir_root, config)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-s3cmd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-04 00:00:00.000000000 Z
12
+ date: 2012-11-01 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A gem providing a ruby interface to s3cmd Amazon S3 client.
15
15
  email: joelbryan.juliano@gmail.com
@@ -18,15 +18,12 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - README
21
- - Changelog
22
21
  - MIT-LICENSE
23
22
  - setup.rb
24
23
  - lib/ruby-s3cmd.rb
25
24
  - lib/ruby-s3cmd/version.rb
26
25
  - lib/ruby-s3cmd/s3cmd.rb
27
- - test/test_ruby_s3cmd.rb
28
- - test/test_helper.rb
29
- homepage: http://jjuliano.github.com/ruby-s3cmd
26
+ homepage: http://github.com/jjuliano/ruby-s3cmd
30
27
  licenses: []
31
28
  post_install_message:
32
29
  rdoc_options: []
data/Changelog DELETED
@@ -1,47 +0,0 @@
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
@@ -1,2 +0,0 @@
1
- require 'test/unit'
2
- require File.dirname(__FILE__) + '/../lib/ruby-s3cmd'
@@ -1,11 +0,0 @@
1
- require File.dirname(__FILE__) + '/test_helper.rb'
2
-
3
- class TestRubyS3Cmd < Test::Unit::TestCase
4
-
5
- def setup
6
- end
7
-
8
- def test_truth
9
- assert true
10
- end
11
- end