similar_text 0.0.1 → 0.0.2

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.
@@ -0,0 +1,4 @@
1
+ == 0.0.1, released 2011-09-12
2
+
3
+ * Extended core String class by adding two methods: similar and similar?
4
+
@@ -1,3 +1,3 @@
1
1
  module SimilarText
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -7,11 +7,13 @@ Gem::Specification.new do |s|
7
7
  s.version = SimilarText::VERSION
8
8
  s.authors = ["Arthur Murauskas"]
9
9
  s.email = ["arthur.murauskas@gmail.com"]
10
- s.homepage = ""
11
- s.summary = %q{Analogue of the similar_text function in PHP}
12
- s.description = %q{Analogue of the similar_text function in PHP}
10
+ s.homepage = "http://github.com/valcker/similar_text-ruby"
11
+ s.summary = %q{Port of PHP function similar_text to Ruby as a native extension. Adds methods similar and similar? to core String class.}
12
+ s.description = %q{Port of PHP function similar_text to Ruby as a native extension. Adds methods similar and similar? to core String class.}
13
13
 
14
14
  s.rubyforge_project = "similar_text"
15
+
16
+ s.extra_rdoc_files = ['README.markdown', 'CHANGELOG.rdoc']
15
17
 
16
18
  s.files = `git ls-files`.split("\n")
17
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: similar_text
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,17 +9,21 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-12 00:00:00.000000000Z
12
+ date: 2011-09-13 00:00:00.000000000Z
13
13
  dependencies: []
14
- description: Analogue of the similar_text function in PHP
14
+ description: Port of PHP function similar_text to Ruby as a native extension. Adds
15
+ methods similar and similar? to core String class.
15
16
  email:
16
17
  - arthur.murauskas@gmail.com
17
18
  executables: []
18
19
  extensions:
19
20
  - ext/similar_text/extconf.rb
20
- extra_rdoc_files: []
21
+ extra_rdoc_files:
22
+ - README.markdown
23
+ - CHANGELOG.rdoc
21
24
  files:
22
25
  - .gitignore
26
+ - CHANGELOG.rdoc
23
27
  - Gemfile
24
28
  - README.markdown
25
29
  - Rakefile
@@ -30,7 +34,7 @@ files:
30
34
  - similar_text.gemspec
31
35
  - test/similar_text_test.rb
32
36
  - test/test_init.rb
33
- homepage: ''
37
+ homepage: http://github.com/valcker/similar_text-ruby
34
38
  licenses: []
35
39
  post_install_message:
36
40
  rdoc_options: []
@@ -54,5 +58,6 @@ rubyforge_project: similar_text
54
58
  rubygems_version: 1.8.6
55
59
  signing_key:
56
60
  specification_version: 3
57
- summary: Analogue of the similar_text function in PHP
61
+ summary: Port of PHP function similar_text to Ruby as a native extension. Adds methods
62
+ similar and similar? to core String class.
58
63
  test_files: []