friendly_id 2.2.6 → 2.2.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ == 2.2.7 2009-12-16
2
+
3
+ * 1 minor fix
4
+ * Fixed typo in Rake tasks which caused delete_old_slugs to fail. (Diego R.V.)
5
+
1
6
  == 2.2.6 2009-12-10
2
7
 
3
8
  * 2 major fixes
@@ -367,6 +367,7 @@ particular from the following people:
367
367
  * Chris Nolan
368
368
  * David Ramalho
369
369
  * Diego Carrion
370
+ * Diego R. V.
370
371
  * Florian Aßmann
371
372
  * Harry Love
372
373
  * Jesse Crouch
@@ -2,7 +2,7 @@ module FriendlyId #:nodoc:
2
2
  module Version #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 2
5
- TINY = 6
5
+ TINY = 7
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
  end
8
8
  end
@@ -16,7 +16,7 @@ namespace :friendly_id do
16
16
 
17
17
  desc "Kill obsolete slugs older than DAYS=45 days."
18
18
  task :remove_old_slugs => :environment do
19
- FriendlyId::Task.delete_old_slugs(ENV["DAYS"], ENV["MODEL"])
19
+ FriendlyId::Tasks.delete_old_slugs(ENV["DAYS"], ENV["MODEL"])
20
20
  end
21
21
  end
22
22
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: friendly_id
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.6
4
+ version: 2.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Norman Clarke
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-12-10 00:00:00 -03:00
14
+ date: 2009-12-16 00:00:00 -03:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency