sluggable_arthur 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ec36ecb3723da9b7c1b00776f6450f9c2c2e5b3c
4
+ data.tar.gz: df319b3b7b091f6e3176a49ac750dc63979966c9
5
+ SHA512:
6
+ metadata.gz: 3b3cbb41ab62d096fc3746340ea0b6d2b5fdc19ba37f5f32033de7777b1fb3ff996c170aa1d33bb44e248fa44d8e3af8210e319fae48557d5485d9849bd5e4d9
7
+ data.tar.gz: 20e9a06ea46395e982a8470c38f95072a8d5cf2c78a62402abc6d414f2f9488bc503877bb78ec29a963e903c0b2f501599084c2ce9a757c327eb1fb59ba9d15f
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in sluggable_arthur.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 ArthurPai
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,40 @@
1
+ # SluggablePlugin
2
+
3
+ Sluggable Plugin By Arthur
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'sluggable_arthur'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install sluggable_arthur
18
+
19
+ ## Usage
20
+
21
+ Add slug column to your table
22
+
23
+ And add follow code to your class
24
+ ```
25
+ class User < ActiveRecord::Base
26
+ include Sluggable
27
+
28
+ sluggable_column :username
29
+ end
30
+ ``
31
+
32
+ sluggable_column is define what table column use to generate the slug
33
+
34
+ ## Contributing
35
+
36
+ 1. Fork it ( http://github.com/ArthurPai/sluggable_plugin/fork )
37
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
38
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
39
+ 4. Push to the branch (`git push origin my-new-feature`)
40
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,28 @@
1
+ class String
2
+ def to_slug
3
+ slug = self.downcase.strip
4
+
5
+ #blow away apostrophes
6
+ slug.gsub!(/['`]/, '')
7
+
8
+ # @ --> at, and & --> and
9
+ slug.gsub!(/\s*@\s*/, " at ")
10
+ slug.gsub!(/\s*&\s*/, " and ")
11
+
12
+ #replace all non alphanumeric to dash
13
+ #slug.gsub!(/\W+/, ' ')
14
+ slug.gsub!(/\s*[^a-z0-9]\s*/, '-')
15
+
16
+ #Replace spaces with dashes
17
+ slug.gsub!(' ', '-')
18
+
19
+ #convert double dash to single
20
+ slug.gsub!(/-+/, '-')
21
+
22
+ #strip off leading/trailing dash
23
+ slug.gsub!(/\A[-\.]+|[-\.]+\z/, '')
24
+
25
+ slug
26
+ end
27
+
28
+ end
@@ -0,0 +1,40 @@
1
+ require "sluggable_arthur/version"
2
+ require "core_ex/string"
3
+
4
+ module SluggableArthur
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ class_attribute :slug_column
9
+ after_validation :generate_slug
10
+ end
11
+
12
+ def generate_slug
13
+ prefix_slug = self.send(self.slug_column.to_sym).to_slug
14
+
15
+ if prefix_slug.length == 0
16
+ prefix_slug = self.id.to_s
17
+ end
18
+
19
+ count = 1
20
+ the_slug = prefix_slug
21
+ obj = self.class.find_by(slug: the_slug)
22
+ while obj && obj != self
23
+ the_slug = prefix_slug + '-' + count.to_s
24
+ count += 1
25
+ obj = self.class.find_by(slug: the_slug)
26
+ end
27
+
28
+ self.slug = the_slug
29
+ end
30
+
31
+ def to_param
32
+ self.slug
33
+ end
34
+
35
+ module ClassMethods
36
+ def sluggable_column(col_name)
37
+ self.slug_column = col_name
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,3 @@
1
+ module SluggableArthur
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'sluggable_arthur/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "sluggable_arthur"
8
+ spec.version = SluggableArthur::VERSION
9
+ spec.authors = ["ArthurPai"]
10
+ spec.email = ["baidragoon@gmail.com"]
11
+ spec.summary = %q{Sluggable Plugin By Arthur.}
12
+ spec.description = %q{Sluggable Plugin for Tealeaf Homework.}
13
+ spec.homepage = "http://arthurpai.logdown.com/"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sluggable_arthur
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - ArthurPai
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Sluggable Plugin for Tealeaf Homework.
42
+ email:
43
+ - baidragoon@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/core_ex/string.rb
54
+ - lib/sluggable_arthur.rb
55
+ - lib/sluggable_arthur/version.rb
56
+ - sluggable_arthur.gemspec
57
+ homepage: http://arthurpai.logdown.com/
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.3.0
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Sluggable Plugin By Arthur.
81
+ test_files: []