deprec 2.2.1 → 2.2.2
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/CHANGELOG +7 -3
- data/lib/deprec/rake/db.rake +2 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,12 +1,16 @@
|
|
1
1
|
# deprec changelog
|
2
2
|
|
3
|
-
= 2.2.
|
3
|
+
= 2.2.2 (Jul 15, 2011)
|
4
4
|
|
5
5
|
* deprec now provides rake tasks
|
6
6
|
|
7
|
-
|
7
|
+
Add this to your Rakefile
|
8
8
|
|
9
|
-
|
9
|
+
require 'deprec/rake'
|
10
|
+
|
11
|
+
or you could even add this to your Gemfile
|
12
|
+
|
13
|
+
gem 'deprec', :require => 'deprec/rake'
|
10
14
|
|
11
15
|
= 2.2.0 (Jul 10, 2011)
|
12
16
|
|
data/lib/deprec/rake/db.rake
CHANGED
@@ -29,8 +29,9 @@ namespace :deprec do
|
|
29
29
|
puts "Deleted #{unwanted_backups.length} backups, #{all_backups.length - unwanted_backups.length} backups available"
|
30
30
|
end
|
31
31
|
|
32
|
-
desc "Restore database"
|
32
|
+
desc "Restore database [Pending]"
|
33
33
|
task :restore => :environment do
|
34
|
+
puts "This task is looking for a volunteer!"
|
34
35
|
end
|
35
36
|
|
36
37
|
end
|