pgcli-rails 0.2.0 → 0.5.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
- SHA1:
3
- metadata.gz: 678b1aa5df2b4558367b5b91103879f8f78fe071
4
- data.tar.gz: 88d8f732d3c86475d8aeceb014734b1e63db773d
2
+ SHA256:
3
+ metadata.gz: 45aaa5bcd5b56d15cbeea4b51472ec0b671484260aa5d70f61a01d4ee5548be9
4
+ data.tar.gz: f84f0c5e7997915f440824acf933179e6b159b2a8f8e62fa5074fef4cb6730d5
5
5
  SHA512:
6
- metadata.gz: 1483bc2a3c3dde8baa4449563585d6daabf619508cf5b3bcf776e2f1609d0c8f0e780d534dfc737288ebd99be8b2dfc73f5b8d76c3f0e8d3c58784cc2c0e1930
7
- data.tar.gz: 0266878584a16289ea4c489b13f887b1080e489ec2fb484c8b0551e334853101a3e2ebb5be4fd6bd3a0710b51405ef13b6f5a27884592432df952bee984ec5bc
6
+ metadata.gz: 9219a1e8be507ecefdeac4ccb0631993793b2c57e4cb5b9b443f8f484b80851bebcd7aabfed8b7342e124ce6aa008d7763812530928121253403dffc922959ad
7
+ data.tar.gz: d0a8d18c30e4d89bf775962402c5be8c128920cb43ec6c150556172d4534d9e91e20c99ebcf9a1b5aed4bf0b8f52874f991e5869b2a19f6f331e4b340d4de8b3
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Matt Brictson
3
+ Copyright (c) 2020 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,6 +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
5
 
5
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?
6
7
 
@@ -42,7 +43,7 @@ RAILS_ENV=test bin/rake pgcli
42
43
  ## Requirements
43
44
 
44
45
  * Rails 4.2+ using PostgreSQL
45
- * Ruby 1.9.3+
46
+ * Ruby 2.5.0+
46
47
  * [pgcli][] (`brew install pgcli` to install on macOS)
47
48
 
48
49
  ## How it works
@@ -1,4 +1,8 @@
1
- require "rails/commands/dbconsole"
1
+ begin
2
+ require "rails/commands/dbconsole"
3
+ rescue LoadError
4
+ require "rails/commands/dbconsole/dbconsole_command"
5
+ end
2
6
 
3
7
  module Pgcli
4
8
  module Rails
@@ -2,7 +2,7 @@ module Pgcli
2
2
  module Rails
3
3
  class Railtie < ::Rails::Railtie
4
4
  rake_tasks do
5
- load File.expand_path("../tasks.rake", __FILE__)
5
+ load File.expand_path("tasks.rake", __dir__)
6
6
  end
7
7
  end
8
8
  end
@@ -5,6 +5,12 @@ 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
- console = Pgcli::Rails::DBConsole.new(["--include-password"])
8
+ opt = if ::Rails.version >= "5.1"
9
+ { "--include-password" => true }
10
+ else
11
+ ["--include-password"]
12
+ end
13
+
14
+ console = Pgcli::Rails::DBConsole.new(opt)
9
15
  console.start
10
16
  end
@@ -1,5 +1,5 @@
1
1
  module Pgcli
2
2
  module Rails
3
- VERSION = "0.2.0".freeze
3
+ VERSION = "0.5.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.2.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-07-18 00:00:00.000000000 Z
11
+ date: 2020-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -24,120 +24,29 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.2.0
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.12'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.12'
41
- - !ruby/object:Gem::Dependency
42
- name: chandler
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '11.2'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '11.2'
69
- - !ruby/object:Gem::Dependency
70
- name: minitest
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '5.0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '5.0'
83
- - !ruby/object:Gem::Dependency
84
- name: minitest-reporters
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: rubocop
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: 0.37.2
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: 0.37.2
111
- description:
27
+ description:
112
28
  email:
113
29
  - opensource@mattbrictson.com
114
30
  executables: []
115
31
  extensions: []
116
32
  extra_rdoc_files: []
117
33
  files:
118
- - ".gitignore"
119
- - ".rubocop.yml"
120
- - ".travis.yml"
121
- - CHANGELOG.md
122
- - CODE_OF_CONDUCT.md
123
- - CONTRIBUTING.md
124
- - Gemfile
125
34
  - LICENSE.txt
126
35
  - README.md
127
- - Rakefile
128
- - bin/console
129
- - bin/setup
130
36
  - lib/pgcli/rails.rb
131
37
  - lib/pgcli/rails/dbconsole.rb
132
38
  - lib/pgcli/rails/railtie.rb
133
39
  - lib/pgcli/rails/tasks.rake
134
40
  - lib/pgcli/rails/version.rb
135
- - pgcli-rails.gemspec
136
41
  homepage: https://github.com/mattbrictson/pgcli-rails
137
42
  licenses:
138
43
  - MIT
139
- metadata: {}
140
- post_install_message:
44
+ metadata:
45
+ bug_tracker_uri: https://github.com/mattbrictson/pgcli-rails/issues
46
+ changelog_uri: https://github.com/mattbrictson/pgcli-rails/releases
47
+ source_code_uri: https://github.com/mattbrictson/pgcli-rails
48
+ homepage_uri: https://github.com/mattbrictson/pgcli-rails
49
+ post_install_message:
141
50
  rdoc_options: []
142
51
  require_paths:
143
52
  - lib
@@ -145,16 +54,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
145
54
  requirements:
146
55
  - - ">="
147
56
  - !ruby/object:Gem::Version
148
- version: '0'
57
+ version: 2.5.0
149
58
  required_rubygems_version: !ruby/object:Gem::Requirement
150
59
  requirements:
151
60
  - - ">="
152
61
  - !ruby/object:Gem::Version
153
62
  version: '0'
154
63
  requirements: []
155
- rubyforge_project:
156
- rubygems_version: 2.6.6
157
- signing_key:
64
+ rubygems_version: 3.1.4
65
+ signing_key:
158
66
  specification_version: 4
159
- summary: Patches Rails dbconsole to use pgcli instead of psql
67
+ summary: Replaces the Rails PostgreSQL dbconsole with the much nicer pgcli
160
68
  test_files: []
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
@@ -1,37 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 1.9
3
- Exclude:
4
- - "*.gemspec"
5
-
6
- Metrics/AbcSize:
7
- Exclude:
8
- - "test/**/*"
9
-
10
- Metrics/MethodLength:
11
- Exclude:
12
- - "test/**/*"
13
-
14
- Metrics/ClassLength:
15
- Exclude:
16
- - "test/**/*"
17
-
18
- Style/BarePercentLiterals:
19
- EnforcedStyle: percent_q
20
-
21
- Style/ClassAndModuleChildren:
22
- Enabled: false
23
-
24
- Style/Documentation:
25
- Enabled: false
26
-
27
- Style/DoubleNegation:
28
- Enabled: false
29
-
30
- Style/HashSyntax:
31
- EnforcedStyle: hash_rockets
32
-
33
- Style/SpaceAroundEqualsInParameterDefault:
34
- EnforcedStyle: no_space
35
-
36
- Style/StringLiterals:
37
- EnforcedStyle: double_quotes
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.3.1
5
- before_install: gem install bundler -v 1.12.5
@@ -1,22 +0,0 @@
1
- # pgcli-rails Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- pgcli-rails is in a pre-1.0 state. This means that its APIs and behavior are subject to breaking changes without deprecation notices. Until 1.0, version numbers will follow a [Semver][]-ish `0.y.z` format, where `y` is incremented when new features or breaking changes are introduced, and `z` is incremented for lesser changes or bug fixes.
6
-
7
- ## [Unreleased][]
8
-
9
- * Your contribution here!
10
-
11
- ## [0.2.0][] (2016-07-18)
12
-
13
- * Rewrite as a Rake task instead of a monkey patch
14
- * New usage: `bin/rake pgcli`
15
-
16
- ## 0.1.0 (2016-07-15)
17
-
18
- * Initial release
19
-
20
- [Semver]: http://semver.org
21
- [Unreleased]: https://github.com/mattbrictson/pgcli-rails/compare/v0.2.0...HEAD
22
- [0.2.0]: https://github.com/mattbrictson/pgcli-rails/compare/v0.1.0...v0.2.0
@@ -1,49 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, and in the interest of
4
- fostering an open and welcoming community, we pledge to respect all people who
5
- contribute through reporting issues, posting feature requests, updating
6
- documentation, submitting pull requests or patches, and other activities.
7
-
8
- We are committed to making participation in this project a harassment-free
9
- experience for everyone, regardless of level of experience, gender, gender
10
- identity and expression, sexual orientation, disability, personal appearance,
11
- body size, race, ethnicity, age, religion, or nationality.
12
-
13
- Examples of unacceptable behavior by participants include:
14
-
15
- * The use of sexualized language or imagery
16
- * Personal attacks
17
- * Trolling or insulting/derogatory comments
18
- * Public or private harassment
19
- * Publishing other's private information, such as physical or electronic
20
- addresses, without explicit permission
21
- * Other unethical or unprofessional conduct
22
-
23
- Project maintainers have the right and responsibility to remove, edit, or
24
- reject comments, commits, code, wiki edits, issues, and other contributions
25
- that are not aligned to this Code of Conduct, or to ban temporarily or
26
- permanently any contributor for other behaviors that they deem inappropriate,
27
- threatening, offensive, or harmful.
28
-
29
- By adopting this Code of Conduct, project maintainers commit themselves to
30
- fairly and consistently applying these principles to every aspect of managing
31
- this project. Project maintainers who do not follow or enforce the Code of
32
- Conduct may be permanently removed from the project team.
33
-
34
- This code of conduct applies both within project spaces and in public spaces
35
- when an individual is representing the project or its community.
36
-
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer at matt@mattbrictson.com. All
39
- complaints will be reviewed and investigated and will result in a response that
40
- is deemed necessary and appropriate to the circumstances. Maintainers are
41
- obligated to maintain confidentiality with regard to the reporter of an
42
- incident.
43
-
44
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
- version 1.3.0, available at
46
- [http://contributor-covenant.org/version/1/3/0/][version]
47
-
48
- [homepage]: http://contributor-covenant.org
49
- [version]: http://contributor-covenant.org/version/1/3/0/
@@ -1,25 +0,0 @@
1
- # Contributing to pgcli-rails
2
-
3
- Have a feature idea, bug fix, or refactoring suggestion? Contributions are welcome!
4
-
5
- ## Pull requests
6
-
7
- 1. Check [Issues][] to see if your contribution has already been discussed and/or implemented.
8
- 2. If not, open an issue to discuss your contribution. I won't accept all changes and do not want to waste your time.
9
- 3. Once you have the :thumbsup:, fork the repo, make your changes, and open a PR.
10
- 4. Don't forget to add your contribution and credit yourself in `CHANGELOG.md`!
11
-
12
- ## Coding guidelines
13
-
14
- * This project has a coding style enforced by [RuboCop][]. Use hash rockets and double-quoted strings, and otherwise try to follow the [Ruby style guide][style].
15
- * Writing tests is strongly encouraged! This project uses Minitest.
16
-
17
- ## Getting started
18
-
19
- After checking out the repo, run `bin/setup` to install dependencies.
20
-
21
- Use `rake` to execute all of pgcli-rails's tests and RuboCop checks
22
-
23
- [Issues]: https://github.com/mattbrictson/pgcli-rails/issues
24
- [RuboCop]: https://github.com/bbatsov/rubocop
25
- [style]: https://github.com/bbatsov/ruby-style-guide
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in pgcli-rails.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,15 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "chandler/tasks"
3
- require "rake/testtask"
4
- require "rubocop/rake_task"
5
-
6
- Rake::TestTask.new(:test) do |t|
7
- t.libs << "test"
8
- t.libs << "lib"
9
- t.test_files = FileList["test/**/*_test.rb"]
10
- end
11
-
12
- RuboCop::RakeTask.new
13
-
14
- task "release:rubygem_push" => "chandler:push"
15
- task :default => [:test, :rubocop]
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "pgcli/rails"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,29 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "pgcli/rails/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "pgcli-rails"
8
- spec.version = Pgcli::Rails::VERSION
9
- spec.authors = ["Matt Brictson"]
10
- spec.email = ["opensource@mattbrictson.com"]
11
-
12
- spec.summary = "Patches Rails dbconsole to use pgcli instead of psql"
13
- spec.homepage = "https://github.com/mattbrictson/pgcli-rails"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "exe"
18
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_dependency "railties", ">= 4.2.0"
22
-
23
- spec.add_development_dependency "bundler", "~> 1.12"
24
- spec.add_development_dependency "chandler"
25
- spec.add_development_dependency "rake", "~> 11.2"
26
- spec.add_development_dependency "minitest", "~> 5.0"
27
- spec.add_development_dependency "minitest-reporters"
28
- spec.add_development_dependency "rubocop", ">= 0.37.2"
29
- end