friendly_slug 0.1.1 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +42 -4
- data/friendly_slug.gemspec +2 -1
- data/lib/friendly_slug/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1768c3c3790ed33b7ecfe7501ffb42d64230779492bea029a176f1993609f068
|
4
|
+
data.tar.gz: b10b282d7bfc58ba1d696326a9a2756dd8170d4967f0d73d682bdf59479367fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2af459a248a59f29df70a7fc4c846e658c30519fae10a5bd61dfcc864c858ea593272cd8d59fc04ba2e45146d5347a94d2166e01109fced0fc78319f8cdd2b86
|
7
|
+
data.tar.gz: 34489be57533253a2c9af754a4020c24481424ed6bfd4061ef3b33887913f3f423df158100f9d10936bed3416e0307ac4ada03ace389eae3721655a1fbda5559
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
# FriendlySlug
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Friendly Slug is meant to dynamically create SEO friendly URL links. It is extremely lightweight and non resource intensive. Friendly Slug ties directly into the Rails URL Helpers so you dont
|
4
|
+
have to change anything. There is no need to create a Rails Migration as this gem does not add anything to your current database. You must have Active Record in your code base for this to work.
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
@@ -22,7 +21,46 @@ Or install it yourself as:
|
|
22
21
|
|
23
22
|
## Usage
|
24
23
|
|
25
|
-
|
24
|
+
In the model you want to add your slug to, simply put the following code in it:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
build_friendly_slug :title, :id
|
28
|
+
```
|
29
|
+
|
30
|
+
You will want at least one unique element that you can search by to retrieve a database row. This attribute should also have an index.
|
31
|
+
|
32
|
+
For example, if I have a blog post with a `title` and `id`, `id` being a primary key and also an indexed table attribute, my slugged link would look like this:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
@blog.title = "The Great Friendly Slug"
|
36
|
+
|
37
|
+
# views/blogs/index.rb
|
38
|
+
link_to @blog_post.title, blog_post_path(@blog_post) # => http://localhost:3000/blogs/the-great-friendly-slug-1
|
39
|
+
|
40
|
+
# controllers/blogs_controller.rb
|
41
|
+
def set_blog_post
|
42
|
+
@blog_post = Blog.find(params[:id].split("-".last)) # => 1
|
43
|
+
end
|
44
|
+
```
|
45
|
+
|
46
|
+
In the above example, we will split the `id`, which will end up being `"the-great-friendly-slug-1"`, `1` being the `id` of the actualy blog post, and the preceding setence being the title.
|
47
|
+
|
48
|
+
Likewise you could move
|
49
|
+
|
50
|
+
```ruby
|
51
|
+
build_friendly_slug :id, :title
|
52
|
+
```
|
53
|
+
|
54
|
+
the reversed way to have the Friendly Slug be `"1-the-great-friendly-slug"`. It could be whatever you want it to be as you as long as you can search a unique attribute with the slugged text.
|
55
|
+
|
56
|
+
Doing it the this way would require you do call `.first` in the controller instead of `.last` in the lookup:
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
# controllers/blogs_controller.rb
|
60
|
+
def set_blog_post
|
61
|
+
@blog_post = Blog.find(params[:id].split("-".first)) # => 1
|
62
|
+
end
|
63
|
+
```
|
26
64
|
|
27
65
|
## Development
|
28
66
|
|
data/friendly_slug.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = %q{Generate a model specific SEO URL friendly slug.}
|
12
12
|
spec.description = %q{A simple SEO URL friendly slug model generator.}
|
13
|
-
spec.homepage = "https://
|
13
|
+
spec.homepage = "https://github.com/samholst/friendly_slug"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
@@ -23,4 +23,5 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.16"
|
24
24
|
spec.add_development_dependency "rake", "~> 10.0"
|
25
25
|
spec.add_development_dependency "rspec", "~> 3.0"
|
26
|
+
spec.add_development_dependency "active_model", "~> 3.0"
|
26
27
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: friendly_slug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Holst
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: active_model
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
55
69
|
description: A simple SEO URL friendly slug model generator.
|
56
70
|
email:
|
57
71
|
- sawohol@gmail.com
|
@@ -73,7 +87,7 @@ files:
|
|
73
87
|
- lib/friendly_slug.rb
|
74
88
|
- lib/friendly_slug/active_record/base.rb
|
75
89
|
- lib/friendly_slug/version.rb
|
76
|
-
homepage: https://
|
90
|
+
homepage: https://github.com/samholst/friendly_slug
|
77
91
|
licenses:
|
78
92
|
- MIT
|
79
93
|
metadata: {}
|