soundcord_rails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f3b66cd1aa4005db9f13c9445cc8ed7e8c42f6b1
4
+ data.tar.gz: b6ed00c81d61fcd265e110751136c9e606f24fd8
5
+ SHA512:
6
+ metadata.gz: 0944208a974328e939055aa7832dd2e1eedfe6e7c787c7ab3fb2258169d6b0bf389e0ae964bb56f538f8e1ab3aed5c6eb1d8cd59bac622ba8c851c38d4da615a
7
+ data.tar.gz: 0a66d23697211aab3a3ff558fa1aba313372937c4a0473ee73299a9a936cc31082919e011e30c7c52c6f3634f4de3b9f8a6e45e6f0816e8ef9c97f3062f82f4f
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .bundle
3
3
  Gemfile.lock
4
4
  pkg/*
5
+ .DS_Store
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  #SoundCord Rails
2
2
 
3
- [![Build Status](https://secure.travis-ci.org/lukasalexandre/soundcord_rails.png)](http://travis-ci.org/lukasalexandre/soundcord)
4
-
5
3
  SoundCord Rails is intended as an easy phonetic engine for Active Record. The intent behind it was to keep setup, and dealing with it, as easy as possible and to treat phonetic database searchs as much like other attributes as possible. This means that the possible results for a query are maximized by the phonetic algorithm, even when the input has writing errors.
6
4
 
7
5
  The basics of soundcord_rails are quite simple: Declare that your model has a phonetic field with the `phonetized` method and give it a name.
@@ -20,7 +18,7 @@ gem "soundcord_rails"
20
18
  Or, if you want to get the latest, you can get master from the main SoundCord Rails repository:
21
19
 
22
20
  ```
23
- gem "soundcord_rails", :git => "git@github.com:lukasalexandre/soundcord_rails.git"
21
+ gem "soundcord_rails", :git => "git@github.com:lukelex/soundcord_rails.git"
24
22
  ```
25
23
 
26
24
  If you`are trying to use features that don't seem to be in the latest released gem, but are mentioned in the README, then you probably need to specify the master branch if you want to use them. This README is probably ahead of the latest released version, if you're reading it on GitHub.
@@ -68,10 +66,10 @@ Please be clean, keep your commits atomic and with the smallest possible logical
68
66
 
69
67
  If you discover any bugs, feel free to create an issue on GitHub. Please add as much information as possible to help us fixing the possible bug.
70
68
 
71
- https://github.com/lukasalexandre/soundcord_rails/issues
69
+ https://github.com/lukelex/soundcord_rails/issues
72
70
 
73
71
  ##License
74
- Copyright (c) 2012 Lukas Alexandre. http://www.devinscene.com.br/
72
+ Copyright (c) 2012 Lukas Alexandre. http://codelogic.me/
75
73
 
76
74
  Permission is hereby granted, free of charge, to any person obtaining
77
75
  a copy of this software and associated documentation files (the
@@ -1,3 +1,3 @@
1
1
  module SoundcordRails
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  s.name = "soundcord_rails"
7
7
  s.version = SoundcordRails::VERSION
8
8
  s.authors = ["Lukas Alexandre"]
9
- s.email = ["lukeskytm@gmail.com"]
10
- s.homepage = "https://github.com/lukasalexandre/soundcord_rails"
9
+ s.email = ["lukasalexandre@me.com"]
10
+ s.homepage = "https://github.com/lukelex/soundcord_rails"
11
11
  s.summary = %q{Phonetic fields as attributes for ActiveRecord}
12
12
  s.description = %q{Easy phonetic comparisons for ActiveRecord}
13
13
 
@@ -18,5 +18,5 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_dependency 'soundcord', '~> 0.2.0'
21
+ s.add_dependency 'soundcord', '~> 0.4.0'
22
22
  end
metadata CHANGED
@@ -1,41 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soundcord_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
5
- prerelease:
4
+ version: 0.0.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Lukas Alexandre
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-07-12 00:00:00.000000000 Z
11
+ date: 2013-03-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: soundcord
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
- version: 0.2.0
19
+ version: 0.4.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
29
- version: 0.2.0
26
+ version: 0.4.0
30
27
  description: Easy phonetic comparisons for ActiveRecord
31
28
  email:
32
- - lukeskytm@gmail.com
29
+ - lukasalexandre@me.com
33
30
  executables: []
34
31
  extensions: []
35
32
  extra_rdoc_files: []
36
33
  files:
37
34
  - .gitignore
38
- - .travis.yml
39
35
  - Gemfile
40
36
  - README.md
41
37
  - Rakefile
@@ -48,28 +44,27 @@ files:
48
44
  - lib/soundcord_rails/railtie.rb
49
45
  - lib/soundcord_rails/version.rb
50
46
  - soundcord_rails.gemspec
51
- homepage: https://github.com/lukasalexandre/soundcord_rails
47
+ homepage: https://github.com/lukelex/soundcord_rails
52
48
  licenses: []
49
+ metadata: {}
53
50
  post_install_message:
54
51
  rdoc_options: []
55
52
  require_paths:
56
53
  - lib
57
54
  required_ruby_version: !ruby/object:Gem::Requirement
58
- none: false
59
55
  requirements:
60
- - - ! '>='
56
+ - - '>='
61
57
  - !ruby/object:Gem::Version
62
58
  version: '0'
63
59
  required_rubygems_version: !ruby/object:Gem::Requirement
64
- none: false
65
60
  requirements:
66
- - - ! '>='
61
+ - - '>='
67
62
  - !ruby/object:Gem::Version
68
63
  version: '0'
69
64
  requirements: []
70
65
  rubyforge_project: soundcordrails
71
- rubygems_version: 1.8.24
66
+ rubygems_version: 2.0.2
72
67
  signing_key:
73
- specification_version: 3
68
+ specification_version: 4
74
69
  summary: Phonetic fields as attributes for ActiveRecord
75
70
  test_files: []
data/.travis.yml DELETED
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.8.7
4
- - 1.9.3