pgcli-rails 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- data/lib/pgcli/rails/tasks.rake +1 -1
- data/lib/pgcli/rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a68abf3aa7782d16e99eedaadd7cef1aa82e6603456f84ecbb708540add54708
|
4
|
+
data.tar.gz: 66dbef842fabcb7eaf7dc5301ce1abbf908399133b69b8b091a653f57a2d39e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97f43041af52a70a13b82409145b7b1d714b1915fde22b7f830b8d6470ae12bf66f1acdda2617c8f82ec98008d852b02c9bf7318038d73eee89b7ae37044b24c
|
7
|
+
data.tar.gz: 60ad9155b88aa7cafd041495d90b274bfcc767515bd2269c3e93cd37e7303533e3bc6362d34705c04418632a599eabcc11f7f9c9fa07454741487981f330488c
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# pgcli-rails
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/pgcli-rails.svg)](http://badge.fury.io/rb/pgcli-rails)
|
4
|
-
[![Build Status](https://
|
4
|
+
[![Build Status](https://mattbrictson.semaphoreci.com/badges/pgcli-rails/branches/main.svg?style=shields)](https://mattbrictson.semaphoreci.com/projects/pgcli-rails)
|
5
5
|
|
6
6
|
[pgcli][] is a command-line interface for PostgreSQL that offers many improvements over `psql`, like auto-completion and syntax highlighting. Wouldn't it be nice to have a convenient way to use `pgcli` with your Rails app?
|
7
7
|
|
@@ -43,7 +43,7 @@ RAILS_ENV=test bin/rake pgcli
|
|
43
43
|
## Requirements
|
44
44
|
|
45
45
|
* Rails 4.2+ using PostgreSQL
|
46
|
-
* Ruby 2.6
|
46
|
+
* Ruby 2.6+
|
47
47
|
* [pgcli][] (`brew install pgcli` to install on macOS)
|
48
48
|
|
49
49
|
## How it works
|
data/lib/pgcli/rails/tasks.rake
CHANGED
@@ -5,7 +5,7 @@ task :pgcli do
|
|
5
5
|
# APP_PATH constant must be set for DBConsole to work
|
6
6
|
APP_PATH = Rails.root.join("config", "application") unless defined?(APP_PATH)
|
7
7
|
|
8
|
-
opt = if
|
8
|
+
opt = if Rails.version >= "5.1"
|
9
9
|
{ "--include-password" => true }
|
10
10
|
else
|
11
11
|
["--include-password"]
|
data/lib/pgcli/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pgcli-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
|
-
rubygems_version: 3.3
|
65
|
+
rubygems_version: 3.4.3
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: Replaces the Rails PostgreSQL dbconsole with the much nicer pgcli
|