friendly_id 2.2.3 → 2.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,8 @@
1
1
  == 2.2.3 2009-11-12
2
+ * 1 minor fix
3
+ * Fixed typo in post-install message.
4
+
5
+ == 2.2.3 2009-11-12
2
6
 
3
7
  * 4 minor enhancements:
4
8
  * Fixed some issues with gem load order under 1.8.x (closes GH Issue #20)
data/Rakefile CHANGED
@@ -25,7 +25,7 @@ Hoe.spec "friendly_id" do
25
25
 
26
26
  If you are upgrading friendly_id, please run
27
27
 
28
- ./script generate friendly_id --skip-migration
28
+ ./script/generate friendly_id --skip-migration
29
29
 
30
30
  in your Rails application to ensure that you have the
31
31
  latest friendly_id Rake tasks.
@@ -2,7 +2,7 @@ module FriendlyId #:nodoc:
2
2
  module Version #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 2
5
- TINY = 3
5
+ TINY = 4
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
  end
8
8
  end
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.3
4
+ version: 2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Norman Clarke
@@ -129,7 +129,7 @@ post_install_message: |+
129
129
 
130
130
  If you are upgrading friendly_id, please run
131
131
 
132
- ./script generate friendly_id --skip-migration
132
+ ./script/generate friendly_id --skip-migration
133
133
 
134
134
  in your Rails application to ensure that you have the
135
135
  latest friendly_id Rake tasks.