friendly_slug 0.1.3 → 0.1.4
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 +15 -8
- data/friendly_slug.gemspec +3 -4
- data/lib/friendly_slug/active_record/base.rb +1 -1
- data/lib/friendly_slug/version.rb +1 -1
- metadata +8 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6565fc64fa222495652a035607e48c7c0b0833a3a4661b8681a0a0aeadc330a
|
4
|
+
data.tar.gz: '074509b1f073d3de471c53f7d8bf604d52a495f6b90653e788ddb52308ca30d3'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c671c2238048afaefdf3f79e0bf4d43e917dae869e5a5e29bf082f0c395dca6a356861d0f4baed9b54db53dee636f940b48d1302e372c60db0b7fac2bf87cffb
|
7
|
+
data.tar.gz: e01075b8939e690cfb9c658c0e55909843ab1fb71607230b60616b1dfffda430556e52a1f325796217348b810922b958e29e3011d2e38b041eff5fb42cc8da1d
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# FriendlySlug
|
2
2
|
|
3
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
|
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 Model in your code base for this to work.
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
|
@@ -24,10 +24,11 @@ Or install it yourself as:
|
|
24
24
|
In the model you want to add your slug to, simply put the following code in it:
|
25
25
|
|
26
26
|
```ruby
|
27
|
+
# models/your_model.rb
|
27
28
|
build_friendly_slug :title, :id
|
28
29
|
```
|
29
30
|
|
30
|
-
You
|
31
|
+
You must provide one unique indexed attribute that you can search by to retrieve a database row and one other attribute you want to appear in the URL. The method only accepts two parameters at the moment.
|
31
32
|
|
32
33
|
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
|
|
@@ -35,15 +36,15 @@ For example, if I have a blog post with a `title` and `id`, `id` being a primary
|
|
35
36
|
@blog.title = "The Great Friendly Slug"
|
36
37
|
|
37
38
|
# views/blogs/index.rb
|
38
|
-
link_to @
|
39
|
+
link_to @blog.title, blog_path(@blog) # => http://localhost:3000/blogs/the-great-friendly-slug-1
|
39
40
|
|
40
41
|
# controllers/blogs_controller.rb
|
41
|
-
def
|
42
|
-
@
|
42
|
+
def set_blog
|
43
|
+
@blog = Blog.find(params[:id].split("-").last) # => 1
|
43
44
|
end
|
44
45
|
```
|
45
46
|
|
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
|
47
|
+
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 sentence being the title.
|
47
48
|
|
48
49
|
Likewise you could move
|
49
50
|
|
@@ -57,11 +58,17 @@ Doing it the this way would require you do call `.first` in the controller inste
|
|
57
58
|
|
58
59
|
```ruby
|
59
60
|
# controllers/blogs_controller.rb
|
60
|
-
def
|
61
|
-
@
|
61
|
+
def set_blog
|
62
|
+
@blog = Blog.find(params[:id].split("-").first) # => 1
|
62
63
|
end
|
63
64
|
```
|
64
65
|
|
66
|
+
You can also set a static string in place of an attribute if you wanted URL's to be similar in wording.
|
67
|
+
|
68
|
+
```ruby
|
69
|
+
build_friendly_slug :id, "My Static String" # => http://localhost:3000/blogs/:id-my-static-string
|
70
|
+
```
|
71
|
+
|
65
72
|
## Development
|
66
73
|
|
67
74
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/friendly_slug.gemspec
CHANGED
@@ -20,8 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
|
-
spec.add_development_dependency "bundler", "
|
24
|
-
spec.add_development_dependency "rake", "
|
25
|
-
spec.add_development_dependency "
|
26
|
-
spec.add_development_dependency "activemodel", "~> 3.0"
|
23
|
+
spec.add_development_dependency "bundler", "> 1.16"
|
24
|
+
spec.add_development_dependency "rake", "> 10.0"
|
25
|
+
spec.add_development_dependency "activemodel", "> 3.0"
|
27
26
|
end
|
@@ -17,7 +17,7 @@ module FriendlySlug
|
|
17
17
|
|
18
18
|
class_eval do
|
19
19
|
def to_param
|
20
|
-
"#{lookup_key(self.class.first_attribute_key)}-#{lookup_key(self.class.second_attribute_key)}".to_s.gsub(/<\/?[^>]*>|[^\w\s-]/, '').strip.downcase.gsub(/\s/, '-')
|
20
|
+
"#{lookup_key(self.class.first_attribute_key)}-#{lookup_key(self.class.second_attribute_key)}".to_s.gsub(/<\/?[^>]*>|[^\w\s-]/, '').strip.downcase.gsub(/\s{1,}/, '-')
|
21
21
|
end
|
22
22
|
|
23
23
|
private
|
metadata
CHANGED
@@ -1,69 +1,55 @@
|
|
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.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Holst
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.16'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.16'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '10.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rspec
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '3.0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '3.0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: activemodel
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
|
-
- - "
|
45
|
+
- - ">"
|
60
46
|
- !ruby/object:Gem::Version
|
61
47
|
version: '3.0'
|
62
48
|
type: :development
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
|
-
- - "
|
52
|
+
- - ">"
|
67
53
|
- !ruby/object:Gem::Version
|
68
54
|
version: '3.0'
|
69
55
|
description: A simple SEO URL friendly slug model generator. Friendly Slug is meant
|