ruby-pg-extras 4.2.0 → 4.4.2

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: e8bc817ade0bfc2390f111a21ae3b730a433c6515a5200317c3abaaba3b6dd5e
4
- data.tar.gz: 368c998bacddc61596404944878b9354a3206e1e6bb0c9ac1ff79bd75517d866
3
+ metadata.gz: a75a544ae447f84999d6bcc098f3ebb7aa94e735e9b8eba6b8df6b7253e7a4fe
4
+ data.tar.gz: 95afe79682512d1e10d681faee01b31c0c582025dd0a930017a7aaf3948ff2c9
5
5
  SHA512:
6
- metadata.gz: 1106f7c5e5df7cab8299d06c83fb590ff53f5a25e2a62f4ce43ca1e513273b6422a341f60a0258faebf4335482df18456347fff727dd26f938110fe898058249
7
- data.tar.gz: 919799c20e9a9a6bb8dd0c6698ff9ac91e0af02121335cf80fd665c7e4fbd197543dec8d96c61bbf6a0a26d05adc681c78191a628b795bcfb51076ff345e1620
6
+ metadata.gz: f5ca9f98949e04fa469406d501b0df711cad8f2fbf50bc6d6870739d0b6cd549521bb631ca3ba6baf49df30655ca409be39f6c5a8579cab5b2fe75accd1bd2e3
7
+ data.tar.gz: 876b69866ae37d3316d3a463dd95ec821db9b95c1c01dca563ac61fe381c74ab0e1c6dc4a2881f1b77b54728dbacdc2789db315f2068e608030f7f6939448b14
data/.circleci/config.yml CHANGED
@@ -2,7 +2,7 @@ version: 2
2
2
  jobs:
3
3
  test:
4
4
  docker:
5
- - image: cimg/ruby:2.6.5
5
+ - image: circleci/ruby:2.6.5
6
6
  environment:
7
7
  DATABASE_URL: postgresql://postgres:secret@localhost:5432/ruby-pg-extras-test
8
8
  - image: circleci/postgres:11.5
@@ -34,7 +34,7 @@ jobs:
34
34
  - run: bundle config set --local path 'vendor/bundle'
35
35
  - run: bundle install
36
36
  - run: sudo apt-get update --allow-releaseinfo-change
37
- - run: sudo apt install postgresql-client-11
37
+ - run: sudo apt install postgresql-client
38
38
  - run: dockerize -wait tcp://postgres11:5432 -timeout 1m
39
39
  - run:
40
40
  name: Run specs for PG 11
data/README.md CHANGED
@@ -23,7 +23,7 @@ Alternative versions:
23
23
  In your Gemfile
24
24
 
25
25
  ```ruby
26
- gem "ruby-pg-extras", require: "ruby_pg_extras"
26
+ gem "ruby-pg-extras"
27
27
  ```
28
28
 
29
29
  `calls` and `outliers` queries require [pg_stat_statements](https://www.postgresql.org/docs/current/pgstatstatements.html) extension.
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyPgExtras
4
- VERSION = "4.2.0"
4
+ VERSION = "4.4.2"
5
5
  end
data/spec/spec_helper.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'bundler/setup'
5
- require_relative '../lib/ruby_pg_extras'
5
+ require_relative '../lib/ruby-pg-extras'
6
6
 
7
7
  pg_version = ENV["PG_VERSION"]
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-pg-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-12 00:00:00.000000000 Z
11
+ date: 2022-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg
@@ -96,7 +96,7 @@ files:
96
96
  - README.md
97
97
  - Rakefile
98
98
  - docker-compose.yml.sample
99
- - lib/ruby_pg_extras.rb
99
+ - lib/ruby-pg-extras.rb
100
100
  - lib/ruby_pg_extras/diagnose_data.rb
101
101
  - lib/ruby_pg_extras/diagnose_print.rb
102
102
  - lib/ruby_pg_extras/index_info.rb