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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d527472b32e4a952ba533e7681eed150833ab8d438a634782a565ecaaad7dc46
4
- data.tar.gz: 662b7278db9c754c2740552d7fe6c93a9cc5d1681b54ce41ac80fe925782009f
3
+ metadata.gz: c6565fc64fa222495652a035607e48c7c0b0833a3a4661b8681a0a0aeadc330a
4
+ data.tar.gz: '074509b1f073d3de471c53f7d8bf604d52a495f6b90653e788ddb52308ca30d3'
5
5
  SHA512:
6
- metadata.gz: a6ad47a123ca083d0a335a6bbb322cafb9b0f88326bb372e62e8601fb6fb31e1e32da8d3359fbbf667912888fed84abe100d54616bb5bf69c6a0ead68161d9a1
7
- data.tar.gz: 6dda687af9e701bc8410382b815a3ddb29f00cb3cbc8a4af9f4eea4533773f5f0f60a736c02027590bd82a0a1a513ef9b99775945c8e2ee10a3689e91d2447d9
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 Record in your code base for this to work.
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 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
+ 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 @blog_post.title, blog_post_path(@blog_post) # => http://localhost:3000/blogs/the-great-friendly-slug-1
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 set_blog_post
42
- @blog_post = Blog.find(params[:id].split("-".last)) # => 1
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 setence being the title.
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 set_blog_post
61
- @blog_post = Blog.find(params[:id].split("-".first)) # => 1
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.
@@ -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", "~> 1.16"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_development_dependency "rspec", "~> 3.0"
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
@@ -1,3 +1,3 @@
1
1
  module FriendlySlug
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
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.3
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-27 00:00:00.000000000 Z
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