phonetic 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb22f0be1272e5b72586a964943808d93f99c5c2
4
- data.tar.gz: cfab5ebba7adc3823f9c74a92b5877681e73d36d
3
+ metadata.gz: af5149abea885ede20731d2ddf269a57588ca5fa
4
+ data.tar.gz: 2ebb72004c4fc667801a2b7087766c8cecb1ff1a
5
5
  SHA512:
6
- metadata.gz: da460d1d048d38d39af6970b3c456551217551d3aa1275d8ec83cc86ea6ae5fcf454842ccb0300d93726303ab9009639bd72c894d99e30d9773edd269e0f41c8
7
- data.tar.gz: 3b94a722e973f37eccd62841d0cd64be3e0dbce0ab27766cd4384a01e375440334f74cc22b14c21804489a5e87f6052911f3decf5b1a2c1f4f24e7b6459306cc
6
+ metadata.gz: 359113efab060b09395e6805bbd2e4b69aee42177b070a03361daad56c39fa6348ab836e77900a14b54236299b1c3b2f24b2b28cc546294bed5065961c465c72
7
+ data.tar.gz: b8879f75acc85d2b24b705ca1cc48265702bafaff41f4f5de0783c1950abb62e160f41e5412c48fec7ff0ba29e2a820fa96a295435eed3228fba28cec0d8cbc9
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - "1.9.2"
4
+ - "1.9.3"
5
+ - "2.0.0"
data/README.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Phonetic
2
+ [![Build Status](https://travis-ci.org/n7v/phonetic.png)](https://travis-ci.org/n7v/phonetic)
3
+ [![Gem Version](https://badge.fury.io/rb/phonetic.png)](http://badge.fury.io/rb/phonetic)
4
+ [![Coverage Status](https://coveralls.io/repos/n7v/phonetic/badge.png)](https://coveralls.io/r/n7v/phonetic)
5
+ [![Code Climate](https://codeclimate.com/github/n7v/phonetic.png)](https://codeclimate.com/github/n7v/phonetic)
2
6
 
3
7
  Ruby library for phonetic algorithms.
4
8
  It supports Soundex, Metaphone, Double Metaphone, Caverphone, NYSIIS and others.
data/Rakefile CHANGED
@@ -1 +1,4 @@
1
1
  require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+ RSpec::Core::RakeTask.new(:spec)
4
+ task :default => :spec
@@ -1,3 +1,3 @@
1
1
  module Phonetic
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Phonetic::VERSION
9
9
  spec.authors = ['n7v']
10
10
  spec.email = ['novsem@gmail.com']
11
- spec.description = %q{Ruby library for phonetic algorithms.}
12
- spec.summary = %q{Ruby library for phonetic algorithms. It supports Soundex, Metaphone, Caverphone, NYSIIS and others}
11
+ spec.description = %q{Ruby library for phonetic algorithms. It supports Soundex, Metaphone, Caverphone, NYSIIS and others.}
12
+ spec.summary = %q{Ruby library for phonetic algorithms.}
13
13
  spec.homepage = 'http://github.com/n7v/phonetic'
14
14
  spec.license = 'MIT'
15
15
 
@@ -22,5 +22,6 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency 'rake'
23
23
  spec.add_development_dependency 'rspec'
24
24
  spec.add_development_dependency 'simplecov'
25
+ spec.add_development_dependency 'coveralls'
25
26
  spec.add_development_dependency 'yard'
26
27
  end
@@ -1,5 +1,12 @@
1
+ require 'coveralls'
1
2
  require 'simplecov'
2
- SimpleCov.start
3
+
4
+ if Coveralls.should_run?
5
+ Coveralls.wear!
6
+ else
7
+ SimpleCov.start
8
+ end
9
+
3
10
 
4
11
  require 'phonetic'
5
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phonetic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - n7v
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: coveralls
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: yard
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -80,7 +94,8 @@ dependencies:
80
94
  - - '>='
81
95
  - !ruby/object:Gem::Version
82
96
  version: '0'
83
- description: Ruby library for phonetic algorithms.
97
+ description: Ruby library for phonetic algorithms. It supports Soundex, Metaphone,
98
+ Caverphone, NYSIIS and others.
84
99
  email:
85
100
  - novsem@gmail.com
86
101
  executables: []
@@ -89,6 +104,7 @@ extra_rdoc_files: []
89
104
  files:
90
105
  - .gitignore
91
106
  - .rspec
107
+ - .travis.yml
92
108
  - Gemfile
93
109
  - LICENSE.txt
94
110
  - README.md
@@ -155,8 +171,7 @@ rubyforge_project:
155
171
  rubygems_version: 2.1.5
156
172
  signing_key:
157
173
  specification_version: 4
158
- summary: Ruby library for phonetic algorithms. It supports Soundex, Metaphone, Caverphone,
159
- NYSIIS and others
174
+ summary: Ruby library for phonetic algorithms.
160
175
  test_files:
161
176
  - spec/phonetic/algorithm_spec.rb
162
177
  - spec/phonetic/caverphone2_spec.rb