s3backup 0.6.9 → 0.6.10

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -29,3 +29,6 @@
29
29
  === 0.6.9 2010-01-20
30
30
  * modify problem for backup taget is huge,memory is burned out
31
31
  * default max_retry_count 10 to 20
32
+
33
+ === 0.6.10 2010-01-25
34
+ * mod bug if directory name has '#'
@@ -8,7 +8,7 @@ module S3backup
8
8
  class Manager
9
9
  DEFAULT_BUF_READ_SIZE=1024*1024*32
10
10
  def shell_name(str)
11
- str.gsub!(/[!"$&'()*,:;<=>?\[\]\\^`{|}\s]/, '\\\\\&')
11
+ str.gsub!(/[!#"$&'()*,:;<=>?\[\]\\^`{|}\s]/, '\\\\\&')
12
12
  a=[]
13
13
  str.each_byte{|i|
14
14
  if i < 0x80
data/lib/s3backup.rb CHANGED
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module S3backup
5
- VERSION = '0.6.9'
5
+ VERSION = '0.6.10'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: s3backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.9
4
+ version: 0.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeshi Morita
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-22 00:00:00 +09:00
12
+ date: 2010-01-25 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency