nagybence-railhead_permalink 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,7 +12,7 @@ module RailheadPermalink
12
12
 
13
13
  module ClassMethods
14
14
  def auto_permalink(field, options = {})
15
- include SimplePermalink::InstanceMethods
15
+ include RailheadPermalink::InstanceMethods
16
16
 
17
17
  write_inheritable_attribute(:permalink_options, {
18
18
  :field => field,
@@ -23,8 +23,7 @@ module RailheadPermalink
23
23
  def find_with_permalink(*args)
24
24
  key = args.first
25
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)
26
+ find_without_permalink(:first, :conditions => ['permalink = ?', key]) || find_without_permalink(*args)
28
27
  else
29
28
  find_without_permalink(*args)
30
29
  end
@@ -41,6 +40,10 @@ module RailheadPermalink
41
40
  end
42
41
  self[:permalink] = permalink
43
42
  end
43
+
44
+ def to_param
45
+ permalink
46
+ end
44
47
  end
45
48
  end
46
49
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "railhead_permalink"
3
- s.version = "0.1.1"
3
+ s.version = "0.1.2"
4
4
  s.date = "2009-01-27"
5
5
  s.summary = "RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink."
6
6
  s.email = "nagybence@tipogral.hu"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nagybence-railhead_permalink
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bence Nagy