pgcli-rails 0.5.1 → 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: 45aaa5bcd5b56d15cbeea4b51472ec0b671484260aa5d70f61a01d4ee5548be9
4
- data.tar.gz: f84f0c5e7997915f440824acf933179e6b159b2a8f8e62fa5074fef4cb6730d5
3
+ metadata.gz: 75f2e9ddc5ce7724547e746fa7f82a415da288a399fa4f46b5a9e5001c20bc9e
4
+ data.tar.gz: be6abb8116c64d71d6377eaf61519c58f7bd19cd7c9253e4e853494f910beb6a
5
5
  SHA512:
6
- metadata.gz: 9219a1e8be507ecefdeac4ccb0631993793b2c57e4cb5b9b443f8f484b80851bebcd7aabfed8b7342e124ce6aa008d7763812530928121253403dffc922959ad
7
- data.tar.gz: d0a8d18c30e4d89bf775962402c5be8c128920cb43ec6c150556172d4534d9e91e20c99ebcf9a1b5aed4bf0b8f52874f991e5869b2a19f6f331e4b340d4de8b3
6
+ metadata.gz: 5ed1b309b13af9245a54a529f9d3c87a9be1569e780b251a23c424ea037dfe7bbfd00054566b37d4f9a1776da649e6cdc589b5061400c9e9990cddd913e60bd3
7
+ data.tar.gz: 32338743e29fd20d97d2d3ba2cd2671a4d6fb9fe09d2eb3c6b1a37c874d864333f88f82ed0b38dae26592197b716af6179ddf233a3bf44361c838bf14c4ae703
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Matt Brictson
3
+ Copyright (c) 2021 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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://travis-ci.org/mattbrictson/pgcli-rails.svg?branch=main)](https://travis-ci.org/mattbrictson/pgcli-rails)
4
+ [![Build Status](https://circleci.com/gh/mattbrictson/pgcli-rails/tree/main.svg?style=shield)](https://app.circleci.com/pipelines/github/mattbrictson/pgcli-rails?branch=main)
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.5.0+
46
+ * Ruby 2.6.0+
47
47
  * [pgcli][] (`brew install pgcli` to install on macOS)
48
48
 
49
49
  ## How it works
@@ -60,7 +60,6 @@ pgcli-rails is little more than a proof-of-concept at this point. Next steps are
60
60
 
61
61
  * Add tests
62
62
  * Use [Appraisal][] to test against multiple versions of Rails
63
- * Set up Travis CI
64
63
 
65
64
  If you have other ideas, open an issue on GitHub!
66
65
 
@@ -72,5 +71,5 @@ Code contributions are also welcome! Read [CONTRIBUTING.md](CONTRIBUTING.md) to
72
71
 
73
72
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
74
73
 
75
- [pgcli]: http://pgcli.com
74
+ [pgcli]: https://www.pgcli.com/
76
75
  [Appraisal]: https://github.com/thoughtbot/appraisal
@@ -1,5 +1,5 @@
1
1
  module Pgcli
2
2
  module Rails
3
- VERSION = "0.5.1".freeze
3
+ VERSION = "0.6.1".freeze
4
4
  end
5
5
  end
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.5.1
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-04 00:00:00.000000000 Z
11
+ date: 2021-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -54,14 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - ">="
56
56
  - !ruby/object:Gem::Version
57
- version: 2.5.0
57
+ version: 2.6.0
58
58
  required_rubygems_version: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
- rubygems_version: 3.1.4
64
+ rubygems_version: 3.2.26
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: Replaces the Rails PostgreSQL dbconsole with the much nicer pgcli