pg_search 2.1.5 → 2.1.6

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
  SHA256:
3
- metadata.gz: 37f3b1c59cc5c10933bcec4bdb40902714172e666537bb7ac43f8c43a4acd43c
4
- data.tar.gz: 30132ced7cbe402c69ccdc0affeb3224ab31690d2cf6ca260b00d21d7602d42c
3
+ metadata.gz: f60c4859fc2cb7265991eb7f7c97008face4fe745c77473ea98ecd5915aa846e
4
+ data.tar.gz: ac9683fd19cee460dbd5bd94b7b4290b5a572af906e68d42af4be92dd39e35b9
5
5
  SHA512:
6
- metadata.gz: 9157dc3eeb50d6bcdf20745c89888ff855a01679de95135c84f58f6b5efe88df0a5d9e813d18acc16376041e63eed118785847667da46e429abf46ef955fcde3
7
- data.tar.gz: c548d7841d812553ed0dbbf6ab50decd833a0b271fe799be9989c7ff03c320451f8658930c8abaca87da70d812dc18c904a900ff91b44b96305eb7fdf55a70f8
6
+ metadata.gz: 6bea2404e7400d7dbb1a98f690dda1a7e29a715db828f9f9c8e629c1ab2ff40fc6ea1813ed2a37f8ba55514fcc399900d458ba65178854429468a894e5359465
7
+ data.tar.gz: 7a02dd41601ee72a11cbd3cffa0da8c0c7808a265ec91cbc05eae22ec152e046ab366b3602afd7c4215b58a94f4d30aad250f61843c2af4e7a4873f5e95ba820
data/.rubocop.yml CHANGED
@@ -1,3 +1,5 @@
1
+ require: rubocop-performance
2
+
1
3
  AllCops:
2
4
  TargetRubyVersion: 2.4
3
5
  Exclude:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # pg_search changelog
2
2
 
3
+ ## 2.1.6
4
+
5
+ * Update link to GitHub repoistory to new location
6
+
3
7
  ## 2.1.5
4
8
 
5
9
  * Drop support for Ruby < 2.4
data/README.md CHANGED
@@ -1,12 +1,11 @@
1
- # [pg_search](http://github.com/Casecommons/pg_search/)
1
+ # [pg_search](http://github.com/nertzy/pg_search/)
2
2
 
3
3
  [![Gem Version](https://img.shields.io/gem/v/pg_search.svg?style=flat)](https://rubygems.org/gems/pg_search)
4
- [![Build Status](https://secure.travis-ci.org/Casecommons/pg_search.svg?branch=master)](https://travis-ci.org/Casecommons/pg_search)
5
- [![Maintainability](https://api.codeclimate.com/v1/badges/ae1a7c021e473e9b2486/maintainability)](https://codeclimate.com/github/Casecommons/pg_search/maintainability)
6
- [![Test Coverage](https://codeclimate.com/github/Casecommons/pg_search/badges/coverage.svg)](https://codeclimate.com/github/Casecommons/pg_search/coverage)
7
- [![Inline docs](http://inch-ci.org/github/Casecommons/pg_search.svg?branch=master&style=flat)](http://inch-ci.org/github/Casecommons/pg_search)
4
+ [![Build Status](https://secure.travis-ci.org/nertzy/pg_search.svg?branch=master)](https://travis-ci.org/nertzy/pg_search)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/ae1a7c021e473e9b2486/maintainability)](https://codeclimate.com/github/nertzy/pg_search/maintainability)
6
+ [![Test Coverage](https://codeclimate.com/github/nertzy/pg_search/badges/coverage.svg)](https://codeclimate.com/github/nertzy/pg_search/coverage)
7
+ [![Inline docs](http://inch-ci.org/github/nertzy/pg_search.svg?branch=master&style=flat)](http://inch-ci.org/github/nertzy/pg_search)
8
8
  [![Join the chat at https://gitter.im/Casecommons/pg_search](https://img.shields.io/badge/gitter-join%20chat-blue.svg)](https://gitter.im/Casecommons/pg_search?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
9
- [![Stories in Ready](https://img.shields.io/waffle/label/Casecommons/pg_search/in%20progress.svg)](https://waffle.io/Casecommons/pg_search)
10
9
 
11
10
  ## DESCRIPTION
12
11
 
@@ -1120,7 +1119,7 @@ feature ideas and bugs.
1120
1119
  We also have a [Google Group](http://groups.google.com/group/casecommons-dev)
1121
1120
  for discussing pg_search and other Case Commons open source projects.
1122
1121
 
1123
- Please read our [CONTRIBUTING guide](https://github.com/Casecommons/pg_search/blob/master/CONTRIBUTING.md).
1122
+ Please read our [CONTRIBUTING guide](https://github.com/nertzy/pg_search/blob/master/CONTRIBUTING.md).
1124
1123
 
1125
1124
  ## LICENSE
1126
1125
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgSearch
4
- VERSION = '2.1.5'
4
+ VERSION = '2.1.6'
5
5
  end
data/pg_search.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.authors = ['Grant Hutchins', 'Case Commons, LLC']
11
11
  s.email = %w[gems@nertzy.com casecommons-dev@googlegroups.com]
12
- s.homepage = 'https://github.com/Casecommons/pg_search'
12
+ s.homepage = 'https://github.com/nertzy/pg_search'
13
13
  s.summary = "PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search"
14
14
  s.description = "PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search"
15
15
  s.licenses = ['MIT']
@@ -24,7 +24,8 @@ Gem::Specification.new do |s|
24
24
  s.add_development_dependency 'pry'
25
25
  s.add_development_dependency 'rake'
26
26
  s.add_development_dependency 'rspec', '>= 3.3'
27
- s.add_development_dependency 'rubocop', '>= 0.63.0'
27
+ s.add_development_dependency 'rubocop', '>= 0.67.2'
28
+ s.add_development_dependency 'rubocop-performance'
28
29
  s.add_development_dependency 'simplecov'
29
30
  s.add_development_dependency 'with_model', '>= 1.2'
30
31
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_search
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5
4
+ version: 2.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Hutchins
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-08 00:00:00.000000000 Z
12
+ date: 2019-04-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -87,14 +87,28 @@ dependencies:
87
87
  requirements:
88
88
  - - ">="
89
89
  - !ruby/object:Gem::Version
90
- version: 0.63.0
90
+ version: 0.67.2
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: 0.63.0
97
+ version: 0.67.2
98
+ - !ruby/object:Gem::Dependency
99
+ name: rubocop-performance
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
98
112
  - !ruby/object:Gem::Dependency
99
113
  name: simplecov
100
114
  requirement: !ruby/object:Gem::Requirement
@@ -191,7 +205,7 @@ files:
191
205
  - spec/support/with_model.rb
192
206
  - sql/dmetaphone.sql
193
207
  - sql/uninstall_dmetaphone.sql
194
- homepage: https://github.com/Casecommons/pg_search
208
+ homepage: https://github.com/nertzy/pg_search
195
209
  licenses:
196
210
  - MIT
197
211
  metadata: {}