pgslice 0.6.0 → 0.6.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
  SHA256:
3
- metadata.gz: 2f56f37e43ecc30fd145316bde2bd20478b360c077f928323fdee982379433b8
4
- data.tar.gz: 594dc56e38e2d5902df435ddc514cdbb15004432f4b2b0d5d95ae37c7f8b00a5
3
+ metadata.gz: df319dee9da69596907cb6c50714a3c49bcfd86eae5a230f2e26c460266c5b66
4
+ data.tar.gz: 81149e6d3ec75fd57988c534932b226850617ce78a2b66d75cd101de8c117478
5
5
  SHA512:
6
- metadata.gz: 4cda3774db98a20ba3d13e1655baa7bcd3f294f810457d1c1a2a6ff7b3da1e861814d26638a95fcfa8f9fcad3280b0a6e419fead798cf83fb76e30108bd8b567
7
- data.tar.gz: 62b2bc217e0fc0e822e4852159790b5d0e7d5e20a8d27216890362975de7100253183834c383b618c2d7ed1623891fbd41f76d44145e3274d6f7b0e1a1a7a225
6
+ metadata.gz: 8f7e3242e5d5ad1476be31537a3abfdbec0323fa797eaee514e5f3fc8da047402647c1b3b2940bccc7202215933f41c12b4aa7d1471eb65ea844d895673abcb1
7
+ data.tar.gz: a198cd6f0efa32403cdd498749b5f886ebc41bb209535cbd85ae88ceb07ece537706a25828280a0a6a87d04865a218c8f330305fba434e374a1ef68c30d4eadb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.6.1 (2023-04-26)
2
+
3
+ - Fixed `uninitialized constant` error
4
+
1
5
  ## 0.6.0 (2023-04-22)
2
6
 
3
7
  - Added support for generated columns
data/README.md CHANGED
@@ -365,7 +365,6 @@ gem specific_install https://github.com/ankane/pgslice.git
365
365
  ## Reference
366
366
 
367
367
  - [PostgreSQL Manual](https://www.postgresql.org/docs/current/static/ddl-partitioning.html)
368
- - [PostgreSQL Wiki](https://wiki.postgresql.org/wiki/Table_partitioning)
369
368
 
370
369
  ## Related Projects
371
370
 
@@ -397,8 +396,8 @@ bundle exec rake test
397
396
  To test against different versions of Postgres with Docker, use:
398
397
 
399
398
  ```sh
400
- docker run -p=8000:5432 postgres:10
399
+ docker run -p=8000:5432 postgres:14
401
400
  TZ=Etc/UTC PGSLICE_URL=postgres://postgres@localhost:8000/postgres bundle exec rake
402
401
  ```
403
402
 
404
- On Mac, you must use [Docker for Mac](https://www.docker.com/docker-mac) for the port mapping to localhost to work.
403
+ On Mac, you must use [Docker Desktop](https://www.docker.com/products/docker-desktop/) for the port mapping to localhost to work.
@@ -1,3 +1,3 @@
1
1
  module PgSlice
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
data/lib/pgslice.rb CHANGED
@@ -5,6 +5,7 @@ require "thor"
5
5
  # stdlib
6
6
  require "cgi"
7
7
  require "time"
8
+ require "uri"
8
9
 
9
10
  # modules
10
11
  require_relative "pgslice/helpers"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pgslice
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-22 00:00:00.000000000 Z
11
+ date: 2023-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg