nagybence-railhead_permalink 0.1.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.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 [name of plugin creator]
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,31 @@
1
+ = RailheadPermalink
2
+
3
+ RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
4
+
5
+ == Installation
6
+
7
+ Installation is available as gem (recommended):
8
+
9
+ config.gem 'nagybence-railhead_permalink', :lib => 'railhead_permalink', :source => 'http://gems.github.com'
10
+
11
+ Or as Rails plugin:
12
+
13
+ $ ruby script/plugin install git://github.com/nagybence/railhead_permalink.git
14
+
15
+ == Usage
16
+
17
+ Add permalink field to your schema:
18
+
19
+ t.string :permalink
20
+
21
+ Setup permalink for your ActiceRecord object:
22
+
23
+ auto_permalink :title
24
+
25
+ You can setup reserved names too:
26
+
27
+ auto_permalink :title, :reserved_names => %w(reserved names)
28
+
29
+ == License
30
+
31
+ Copyright (c) 2008-2009 Bence Nagy (nagybence@tipogral.hu), released under the MIT license.
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'railhead_permalink'
@@ -0,0 +1,48 @@
1
+ module RailheadPermalink
2
+ def self.included(base)
3
+ base.class_eval do
4
+ extend ClassMethods
5
+ class << self
6
+ alias_method_chain :find, :permalink
7
+ end
8
+ class_inheritable_reader :permalink_options
9
+ before_validation :create_permalink
10
+ end
11
+ end
12
+
13
+ module ClassMethods
14
+ def auto_permalink(field, options = {})
15
+ include SimplePermalink::InstanceMethods
16
+
17
+ write_inheritable_attribute(:permalink_options, {
18
+ :field => field,
19
+ :reserved_names => (options[:reserved_names] || []).concat(ActionController::Base.resources_path_names.values)
20
+ })
21
+ end
22
+
23
+ def find_with_permalink(*args)
24
+ key = args.first
25
+ if key.is_a?(String)
26
+ options = {:conditions => ['permalink = ?', key]}
27
+ with_scope :find => options { find_without_permalink :first } or find_without_permalink(*args)
28
+ else
29
+ find_without_permalink(*args)
30
+ end
31
+ end
32
+ end
33
+
34
+ module InstanceMethods
35
+ def create_permalink
36
+ key, counter = self[permalink_options[:field]].parameterize.to_s, '-1'
37
+ permalink = key
38
+ while permalink_options[:reserved_names].include?(permalink) or self.class.exists?(:permalink => permalink)
39
+ counter.succ!
40
+ permalink = key + counter
41
+ end
42
+ self[:permalink] = permalink
43
+ end
44
+ end
45
+ end
46
+
47
+
48
+ ActiveRecord::Base.send :include, RailheadPermalink
@@ -0,0 +1,18 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "railhead_permalink"
3
+ s.version = "0.1.1"
4
+ s.date = "2009-01-27"
5
+ s.summary = "RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink."
6
+ s.email = "nagybence@tipogral.hu"
7
+ s.homepage = "http://github.com/nagybence/railhead_permalink"
8
+ s.description = "RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink."
9
+ s.has_rdoc = true
10
+ s.authors = ["Bence Nagy"]
11
+ s.files = ["MIT-LICENSE",
12
+ "README.rdoc",
13
+ "init.rb",
14
+ "railhead_permalink.gemspec",
15
+ "lib/railhead_permalink.rb"]
16
+ s.rdoc_options = ["--main", "README.rdoc"]
17
+ s.extra_rdoc_files = ["README.rdoc"]
18
+ end
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nagybence-railhead_permalink
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Bence Nagy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-01-27 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
17
+ email: nagybence@tipogral.hu
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.rdoc
24
+ files:
25
+ - MIT-LICENSE
26
+ - README.rdoc
27
+ - init.rb
28
+ - railhead_permalink.gemspec
29
+ - lib/railhead_permalink.rb
30
+ has_rdoc: true
31
+ homepage: http://github.com/nagybence/railhead_permalink
32
+ post_install_message:
33
+ rdoc_options:
34
+ - --main
35
+ - README.rdoc
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: "0"
43
+ version:
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ version:
50
+ requirements: []
51
+
52
+ rubyforge_project:
53
+ rubygems_version: 1.2.0
54
+ signing_key:
55
+ specification_version: 2
56
+ summary: RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
57
+ test_files: []
58
+