nagybence-railhead_permalink 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,7 @@ module RailheadPermalink
21
21
 
22
22
  before_validation :create_permalink
23
23
  validates_presence_of field
24
+ validates_presence_of :permalink
24
25
  end
25
26
 
26
27
  def find_with_permalink(*args)
@@ -39,7 +40,7 @@ module RailheadPermalink
39
40
  key, counter = self[permalink_options[:field]].parameterize.to_s, '-1'
40
41
  unless self.permalink == key
41
42
  permalink = key
42
- while permalink_options[:reserved_names].include?(permalink) or permalink.blank? or
43
+ while permalink_options[:reserved_names].include?(permalink) or
43
44
  (self.class.exists?(:permalink => permalink) and not self == self.class.find_without_permalink(:first, :conditions => {:permalink => permalink}))
44
45
  counter.succ!
45
46
  permalink = key + counter
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "railhead_permalink"
3
- s.version = "0.1.9"
3
+ s.version = "0.1.10"
4
4
  s.date = "2009-03-12"
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.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bence Nagy