slugify 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- class String
1
+ class SlugifyString
2
2
 
3
3
  def slugify(trim = false)
4
4
  Slugify.convert(self, trim)
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require File.dirname(__FILE__) + "/../lib/string"
2
+ require File.dirname(__FILE__) + "/../lib/slugify_string"
3
3
 
4
4
  class StringSlugifyTest < Test::Unit::TestCase
5
5
 
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slugify
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stefaan Colman
14
- autorequire: lib/string
14
+ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
@@ -28,8 +28,8 @@ extensions: []
28
28
  extra_rdoc_files: []
29
29
 
30
30
  files:
31
+ - lib/slugify_string.rb
31
32
  - lib/slugify.rb
32
- - lib/string.rb
33
33
  - tests/slugify_test.rb
34
34
  - tests/string_slugify_test.rb
35
35
  - README