rehabilitate 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rehabilitate', "0.3.3") do |p|
5
+ Echoe.new('rehabilitate', "0.3.4") do |p|
6
6
  p.description = "Backup stuff"
7
7
  p.url = "https://github.com/fearoffish/rehabilitate"
8
8
  p.author = "Jamie van Dyke"
data/bin/rehabilitate CHANGED
@@ -100,7 +100,7 @@ command :save do |c|
100
100
  if options._failure
101
101
  log "Quitting due to failure, use debug next time."
102
102
  else
103
- Backup.send(cmd, options)
103
+ Rehabilitate.send(cmd, options)
104
104
  end
105
105
  end
106
106
  cleanup(options._tmp_files) unless options.file or options.skip_cleanup
@@ -146,7 +146,7 @@ command :restore do |c|
146
146
  if options._failure
147
147
  log "Quitting due to failure, use debug next time."
148
148
  else
149
- Backup.send(cmd, options)
149
+ Rehabilitate.send(cmd, options)
150
150
  end
151
151
  end
152
152
  cleanup(options._tmp_files) unless options.file or options.skip_cleanup
@@ -167,7 +167,7 @@ command :list do |c|
167
167
  :_failure => nil
168
168
  options._backup_files = ["#{options.tmp}/#{options._base_backup_name}"]
169
169
  setup_logger(options.quiet)
170
- Backup.list(options)
170
+ Rehabilitate.list(options)
171
171
  end
172
172
  end
173
173
 
data/rehabilitate.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rehabilitate}
5
- s.version = "0.3.3"
5
+ s.version = "0.3.4"
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"]
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: 21
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jamie van Dyke