backup 2.3.0.2 → 2.3.0.3

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.
Files changed (5) hide show
  1. data/CHANGELOG +7 -0
  2. data/VERSION +1 -1
  3. data/backup.gemspec +2 -2
  4. data/lib/backup.rb +1 -1
  5. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ PATCH
2
+ === 2.3.2 ====================================
3
+
4
+ - Small bug was patched. Error would occur when a list of triggers should be shown
5
+
6
+
1
7
  BIG UPDATE
2
8
  === 2.3.0 ====================================
3
9
 
@@ -5,6 +11,7 @@ BIG UPDATE
5
11
  - Backup now supports multiple environments: Rails and Unix
6
12
  - Backup is now executable through the command-line when using the Unix environment
7
13
 
14
+
8
15
  SMALL FEATURE UPDATE
9
16
  === 2.2.1 ====================================
10
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.3.0.2
1
+ 2.3.0.3
data/backup.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{backup}
8
- s.version = "2.3.0.2"
8
+ s.version = "2.3.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Michael van Rooijen"]
12
- s.date = %q{2009-12-12}
12
+ s.date = %q{2009-12-18}
13
13
  s.default_executable = %q{backup}
14
14
  s.description = %q{
15
15
  Backup is a Ruby Gem written for Unix and Rails environments. It can be used both with and without the
data/lib/backup.rb CHANGED
@@ -107,7 +107,7 @@ module Backup
107
107
  return procedure
108
108
  end
109
109
  end
110
- available_triggers = procedures.each.map {|procedure| "- #{procedure.trigger}\n" }
110
+ available_triggers = procedures.map {|procedure| "- #{procedure.trigger}\n" }
111
111
  puts "Could not find a backup procedure with the trigger \"#{trigger}\". \nHere's a list of available triggers:\n#{available_triggers}"
112
112
  exit
113
113
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0.2
4
+ version: 2.3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael van Rooijen
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-12 00:00:00 +01:00
12
+ date: 2009-12-18 00:00:00 +01:00
13
13
  default_executable: backup
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency