rehabilitate 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Manifest +2 -1
  2. data/Rakefile +8 -1
  3. data/backup.gemspec +32 -0
  4. data/rehabilitate.gemspec +24 -3
  5. metadata +119 -7
data/Manifest CHANGED
@@ -3,7 +3,7 @@ Gemfile.lock
3
3
  Manifest
4
4
  README.mdown
5
5
  Rakefile
6
- rehabilitate.gemspec
6
+ backup.gemspec
7
7
  bin/rehabilitate
8
8
  lib/rehabilitate.rb
9
9
  lib/rehabilitate/plugin.rb
@@ -12,3 +12,4 @@ lib/rehabilitate/plugins/postgresql.rb
12
12
  lib/rehabilitate/plugins/s3.rb
13
13
  lib/rehabilitate/plugins/scp.rb
14
14
  lib/rehabilitate/plugins/splitter.rb
15
+ rehabilitate.gemspec
data/Rakefile CHANGED
@@ -2,13 +2,20 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rehabilitate', "0.3.4") do |p|
5
+ Echoe.new('rehabilitate', "0.3.5") do |p|
6
6
  p.description = "Backup stuff"
7
7
  p.url = "https://github.com/fearoffish/rehabilitate"
8
8
  p.author = "Jamie van Dyke"
9
9
  p.email = "jamie@fearoffish.com"
10
10
  p.ignore_pattern = ["tmp/*", "script/*", "testing/*"]
11
11
  p.development_dependencies = []
12
+ p.runtime_dependencies = [ 'echoe ~>4.3.1',
13
+ 'commander ~>4.0.3',
14
+ 'pluginfactory ~>1.0.7',
15
+ 'log4r ~>1.1.8',
16
+ 'net-ssh ~>2.0.23',
17
+ 'net-scp ~>1.0.4',
18
+ 'fog ~>0.3.25' ]
12
19
  end
13
20
 
14
21
  Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
data/backup.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{backup}
5
+ s.version = "0.3.5"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Jamie van Dyke"]
9
+ s.date = %q{2011-01-05}
10
+ s.default_executable = %q{backup}
11
+ s.description = %q{Backup stuff}
12
+ s.email = %q{jamie@fearoffish.com}
13
+ s.executables = ["backup"]
14
+ s.extra_rdoc_files = ["README.mdown", "bin/backup", "lib/backup.rb", "lib/backup/plugin.rb", "lib/backup/plugins/lister.rb", "lib/backup/plugins/lzop.rb", "lib/backup/plugins/postgresql.rb", "lib/backup/plugins/s3.rb", "lib/backup/plugins/scp.rb", "lib/backup/plugins/splitter.rb"]
15
+ s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.mdown", "Rakefile", "backup.gemspec", "bin/backup", "lib/backup.rb", "lib/backup/plugin.rb", "lib/backup/plugins/lister.rb", "lib/backup/plugins/lzop.rb", "lib/backup/plugins/postgresql.rb", "lib/backup/plugins/s3.rb", "lib/backup/plugins/scp.rb", "lib/backup/plugins/splitter.rb"]
16
+ s.homepage = %q{https://github.com/fearoffish/rehabilitate}
17
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Backup", "--main", "README.mdown"]
18
+ s.require_paths = ["lib"]
19
+ s.rubyforge_project = %q{backup}
20
+ s.rubygems_version = %q{1.3.7}
21
+ s.summary = %q{Backup stuff}
22
+
23
+ if s.respond_to? :specification_version then
24
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
25
+ s.specification_version = 3
26
+
27
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28
+ else
29
+ end
30
+ else
31
+ end
32
+ end
data/rehabilitate.gemspec CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rehabilitate}
5
- s.version = "0.3.4"
5
+ s.version = "0.3.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jamie van Dyke"]
9
- s.date = %q{2011-01-05}
9
+ s.date = %q{2011-01-10}
10
10
  s.default_executable = %q{rehabilitate}
11
11
  s.description = %q{Backup stuff}
12
12
  s.email = %q{jamie@fearoffish.com}
13
13
  s.executables = ["rehabilitate"]
14
14
  s.extra_rdoc_files = ["README.mdown", "bin/rehabilitate", "lib/rehabilitate.rb", "lib/rehabilitate/plugin.rb", "lib/rehabilitate/plugins/lzop.rb", "lib/rehabilitate/plugins/postgresql.rb", "lib/rehabilitate/plugins/s3.rb", "lib/rehabilitate/plugins/scp.rb", "lib/rehabilitate/plugins/splitter.rb"]
15
- s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.mdown", "Rakefile", "rehabilitate.gemspec", "bin/rehabilitate", "lib/rehabilitate.rb", "lib/rehabilitate/plugin.rb", "lib/rehabilitate/plugins/lzop.rb", "lib/rehabilitate/plugins/postgresql.rb", "lib/rehabilitate/plugins/s3.rb", "lib/rehabilitate/plugins/scp.rb", "lib/rehabilitate/plugins/splitter.rb"]
15
+ s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.mdown", "Rakefile", "backup.gemspec", "bin/rehabilitate", "lib/rehabilitate.rb", "lib/rehabilitate/plugin.rb", "lib/rehabilitate/plugins/lzop.rb", "lib/rehabilitate/plugins/postgresql.rb", "lib/rehabilitate/plugins/s3.rb", "lib/rehabilitate/plugins/scp.rb", "lib/rehabilitate/plugins/splitter.rb", "rehabilitate.gemspec"]
16
16
  s.homepage = %q{https://github.com/fearoffish/rehabilitate}
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rehabilitate", "--main", "README.mdown"]
18
18
  s.require_paths = ["lib"]
@@ -24,8 +24,29 @@ Gem::Specification.new do |s|
24
24
  s.specification_version = 3
25
25
 
26
26
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ s.add_runtime_dependency(%q<echoe>, ["~> 4.3.1"])
28
+ s.add_runtime_dependency(%q<commander>, ["~> 4.0.3"])
29
+ s.add_runtime_dependency(%q<pluginfactory>, ["~> 1.0.7"])
30
+ s.add_runtime_dependency(%q<log4r>, ["~> 1.1.8"])
31
+ s.add_runtime_dependency(%q<net-ssh>, ["~> 2.0.23"])
32
+ s.add_runtime_dependency(%q<net-scp>, ["~> 1.0.4"])
33
+ s.add_runtime_dependency(%q<fog>, ["~> 0.3.25"])
27
34
  else
35
+ s.add_dependency(%q<echoe>, ["~> 4.3.1"])
36
+ s.add_dependency(%q<commander>, ["~> 4.0.3"])
37
+ s.add_dependency(%q<pluginfactory>, ["~> 1.0.7"])
38
+ s.add_dependency(%q<log4r>, ["~> 1.1.8"])
39
+ s.add_dependency(%q<net-ssh>, ["~> 2.0.23"])
40
+ s.add_dependency(%q<net-scp>, ["~> 1.0.4"])
41
+ s.add_dependency(%q<fog>, ["~> 0.3.25"])
28
42
  end
29
43
  else
44
+ s.add_dependency(%q<echoe>, ["~> 4.3.1"])
45
+ s.add_dependency(%q<commander>, ["~> 4.0.3"])
46
+ s.add_dependency(%q<pluginfactory>, ["~> 1.0.7"])
47
+ s.add_dependency(%q<log4r>, ["~> 1.1.8"])
48
+ s.add_dependency(%q<net-ssh>, ["~> 2.0.23"])
49
+ s.add_dependency(%q<net-scp>, ["~> 1.0.4"])
50
+ s.add_dependency(%q<fog>, ["~> 0.3.25"])
30
51
  end
31
52
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rehabilitate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 4
10
- version: 0.3.4
9
+ - 5
10
+ version: 0.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jamie van Dyke
@@ -15,10 +15,121 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-05 00:00:00 +00:00
18
+ date: 2011-01-10 00:00:00 +00:00
19
19
  default_executable:
20
- dependencies: []
21
-
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: echoe
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 49
30
+ segments:
31
+ - 4
32
+ - 3
33
+ - 1
34
+ version: 4.3.1
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: commander
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 57
46
+ segments:
47
+ - 4
48
+ - 0
49
+ - 3
50
+ version: 4.0.3
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: pluginfactory
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ hash: 25
62
+ segments:
63
+ - 1
64
+ - 0
65
+ - 7
66
+ version: 1.0.7
67
+ type: :runtime
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: log4r
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ hash: 3
78
+ segments:
79
+ - 1
80
+ - 1
81
+ - 8
82
+ version: 1.1.8
83
+ type: :runtime
84
+ version_requirements: *id004
85
+ - !ruby/object:Gem::Dependency
86
+ name: net-ssh
87
+ prerelease: false
88
+ requirement: &id005 !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ hash: 33
94
+ segments:
95
+ - 2
96
+ - 0
97
+ - 23
98
+ version: 2.0.23
99
+ type: :runtime
100
+ version_requirements: *id005
101
+ - !ruby/object:Gem::Dependency
102
+ name: net-scp
103
+ prerelease: false
104
+ requirement: &id006 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ hash: 31
110
+ segments:
111
+ - 1
112
+ - 0
113
+ - 4
114
+ version: 1.0.4
115
+ type: :runtime
116
+ version_requirements: *id006
117
+ - !ruby/object:Gem::Dependency
118
+ name: fog
119
+ prerelease: false
120
+ requirement: &id007 !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ hash: 33
126
+ segments:
127
+ - 0
128
+ - 3
129
+ - 25
130
+ version: 0.3.25
131
+ type: :runtime
132
+ version_requirements: *id007
22
133
  description: Backup stuff
23
134
  email: jamie@fearoffish.com
24
135
  executables:
@@ -41,7 +152,7 @@ files:
41
152
  - Manifest
42
153
  - README.mdown
43
154
  - Rakefile
44
- - rehabilitate.gemspec
155
+ - backup.gemspec
45
156
  - bin/rehabilitate
46
157
  - lib/rehabilitate.rb
47
158
  - lib/rehabilitate/plugin.rb
@@ -50,6 +161,7 @@ files:
50
161
  - lib/rehabilitate/plugins/s3.rb
51
162
  - lib/rehabilitate/plugins/scp.rb
52
163
  - lib/rehabilitate/plugins/splitter.rb
164
+ - rehabilitate.gemspec
53
165
  has_rdoc: true
54
166
  homepage: https://github.com/fearoffish/rehabilitate
55
167
  licenses: []