has_slug 0.2.1 → 0.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/README.rdoc +2 -0
- metadata +4 -13
data/README.rdoc
CHANGED
|
@@ -21,6 +21,8 @@ Or even better:
|
|
|
21
21
|
has_slug is inspired by friendly_id (http://github.com/norman/friendly_id/tree/master),
|
|
22
22
|
but instead of adding a new table for the slugs it uses a single column per model.
|
|
23
23
|
|
|
24
|
+
The use of the unicode gem for ruby 1.8, or unicode_utils gem for ruby 1.9 is recommended.
|
|
25
|
+
|
|
24
26
|
=== Why?
|
|
25
27
|
|
|
26
28
|
* Text-based id's look better
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: has_slug
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom-Eric Gerritsen
|
|
@@ -11,17 +11,8 @@ cert_chain: []
|
|
|
11
11
|
|
|
12
12
|
date: 2008-12-29 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
16
|
-
name: unicode
|
|
17
|
-
type: :runtime
|
|
18
|
-
version_requirement:
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: "0"
|
|
24
|
-
version:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
25
16
|
description: has_slug is a plugin that provides slugging capabilities to Ruby on Rails models. Inspired by the friendly_id plugin.
|
|
26
17
|
email: tomeric@i76.nl
|
|
27
18
|
executables: []
|
|
@@ -69,7 +60,7 @@ requirements: []
|
|
|
69
60
|
rubyforge_project:
|
|
70
61
|
rubygems_version: 1.3.5
|
|
71
62
|
signing_key:
|
|
72
|
-
specification_version:
|
|
63
|
+
specification_version: 3
|
|
73
64
|
summary: A slugging plugin for Ruby on Rails
|
|
74
65
|
test_files:
|
|
75
66
|
- test/schema.rb
|