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 +4 -0
- data/generators/friendly_id/friendly_id_generator.rb +2 -2
- data/lib/friendly_id/version.rb +1 -1
- metadata +2 -2
data/Changelog.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
class FriendlyIdGenerator < Rails::Generator::Base
|
2
2
|
|
3
|
-
RAKE_TASKS = File.join(
|
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
|
data/lib/friendly_id/version.rb
CHANGED