backup2qiniu 0.1.0 → 0.1.1

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/Gemfile.lock CHANGED
@@ -1,28 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- backup2qiniu (0.1.0)
4
+ backup2qiniu (0.1.1)
5
5
  backup (~> 3.0)
6
- qiniu-rs (~> 2.0)
6
+ qiniu-rs (>= 2.0, < 4)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- backup (3.0.24)
11
+ backup (3.0.25)
12
12
  open4 (~> 1.3.0)
13
- thor (~> 0.14.6)
14
- json (1.7.3)
13
+ thor (~> 0.15.4)
14
+ json (1.7.5)
15
15
  mime-types (1.19)
16
16
  open4 (1.3.0)
17
- qiniu-rs (2.0.5)
18
- json (~> 1.7.3)
17
+ qiniu-rs (3.0.4)
18
+ json (~> 1.7.5)
19
19
  mime-types (~> 1.19)
20
20
  rest-client (~> 1.6.7)
21
21
  ruby-hmac (~> 0.4.0)
22
22
  rest-client (1.6.7)
23
23
  mime-types (>= 1.16)
24
24
  ruby-hmac (0.4.0)
25
- thor (0.14.6)
25
+ thor (0.15.4)
26
26
 
27
27
  PLATFORMS
28
28
  ruby
data/NEWS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.1.1 (2012-08-19)
4
+
5
+ * support qiniu-rs 3.x.
6
+
3
7
  ## 0.1.0 (2012-06-29)
4
8
 
5
9
  * use qiniu ruby SDK v2.
data/README.md CHANGED
@@ -35,6 +35,6 @@ Backup::Model.new(:mysql_backup_qiniu, 'example backup to qiniu') do
35
35
  end
36
36
  ```
37
37
 
38
- * 运行 sudo backup perform -t mysql_backup_qiniu
38
+ * 运行 backup perform -t mysql_backup_qiniu
39
39
  * backup 支持备份目录,数据库等多种源,并且支持非对称密钥加密来保护数据安全,
40
40
  具体可以参考 backup 的文档: https://github.com/meskyanichi/backup
data/backup2qiniu.gemspec CHANGED
@@ -15,5 +15,5 @@ Gem::Specification.new do |gem|
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = Backup2qiniu::VERSION
17
17
  gem.add_dependency 'backup', '~> 3.0'
18
- gem.add_dependency 'qiniu-rs', '~> 2.0'
18
+ gem.add_dependency 'qiniu-rs', ['>= 2.0', '< 4']
19
19
  end
@@ -1,3 +1,3 @@
1
1
  module Backup2qiniu
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backup2qiniu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
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-06-29 00:00:00.000000000 Z
12
+ date: 2012-08-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: backup
@@ -32,17 +32,23 @@ dependencies:
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  none: false
34
34
  requirements:
35
- - - ~>
35
+ - - ! '>='
36
36
  - !ruby/object:Gem::Version
37
37
  version: '2.0'
38
+ - - <
39
+ - !ruby/object:Gem::Version
40
+ version: '4'
38
41
  type: :runtime
39
42
  prerelease: false
40
43
  version_requirements: !ruby/object:Gem::Requirement
41
44
  none: false
42
45
  requirements:
43
- - - ~>
46
+ - - ! '>='
44
47
  - !ruby/object:Gem::Version
45
48
  version: '2.0'
49
+ - - <
50
+ - !ruby/object:Gem::Version
51
+ version: '4'
46
52
  description: backup to qiniutek.com
47
53
  email:
48
54
  - lidaobing@gmail.com