friendly_id 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog.md CHANGED
@@ -6,6 +6,10 @@ suggestions, ideas and improvements to FriendlyId.
6
6
  * Table of Contents
7
7
  {:toc}
8
8
 
9
+ ## 3.0.1 (2010-03-30)
10
+
11
+ * Fixed bad path in Rails 2.x generator.
12
+
9
13
  ## 3.0.0 (2010-03-30)
10
14
 
11
15
  * Rails 3 support.
@@ -1,6 +1,6 @@
1
1
  class FriendlyIdGenerator < Rails::Generator::Base
2
2
 
3
- RAKE_TASKS = File.join(File.dirname(__FILE__), "..", "..", "lib", "tasks", "friendly_id.rake")
3
+ RAKE_TASKS = File.join("..", "..", "..", "lib", "tasks", "friendly_id.rake")
4
4
 
5
5
  def manifest
6
6
  record do |m|
@@ -27,4 +27,4 @@ class FriendlyIdGenerator < Rails::Generator::Base
27
27
  end
28
28
  end
29
29
 
30
- end
30
+ end
@@ -2,7 +2,7 @@ module FriendlyId
2
2
  module Version
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 0
5
+ TINY = 1
6
6
  BUILD = nil
7
7
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
8
8
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 3
7
7
  - 0
8
- - 0
9
- version: 3.0.0
8
+ - 1
9
+ version: 3.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Norman Clarke