simple_slugs 0.0.2 → 0.0.3

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.
@@ -20,8 +20,7 @@ module SimpleSlugs
20
20
  def unique_slug!(record)
21
21
  if record.send(slug_name).blank? || !on_blank
22
22
  source = record.send(self.source)
23
- source || raise("can not generate a slug for #{record.inspect} because #{self.source} is #{source.inspect}")
24
- record.slug = ensure_unique_slug(record, source.to_slug)
23
+ record.slug = ensure_unique_slug(record, source.to_slug) if source
25
24
  end
26
25
  end
27
26
 
@@ -63,7 +62,7 @@ module SimpleSlugs
63
62
  end
64
63
 
65
64
  def translated?
66
- model.translated_attribute_names.include?(:slug) rescue false
65
+ model.try(:translated?, :slug)
67
66
  end
68
67
  end
69
68
  end
@@ -1,3 +1,3 @@
1
1
  module SimpleSlugs
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_slugs
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sven Fuchs
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-08-04 00:00:00 +02:00
18
+ date: 2010-08-18 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency