rails_sql_prettifier 6.1.3 → 6.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Dockerfile_30 +20 -0
- data/README.md +5 -4
- data/docker-compose.yml +11 -2
- data/lib/rails_sql_prettifier/version.rb +1 -1
- data/lib/rails_sql_prettifier.rb +4 -3
- data/rails_sql_prettifier.gemspec +2 -1
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58a944dc1c5ff11aae8445592a777d82edaf2fd812278467d8ebc95d1333ac93
|
4
|
+
data.tar.gz: ca73d669390fa3dd4293279f5e7299f69674295b48677c9234a52cd62f4c95d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3e40ba9047a8ffcf41f928e4b9821235bb2cd671686fb06876256cab46da39eab586d811c6d4488aceb915fa26561e7e11e5d70790973fece1bd1f228a7619a
|
7
|
+
data.tar.gz: 0236a8cab9e9cfb404c10275cc3a6683609653f21d0e2691ecf5f6d60e611be55bffb97fac29671b66d2ffd7a4683b8b1e95d82694403376d14441bff0c58b4f
|
data/CHANGELOG.md
CHANGED
data/Dockerfile_30
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
FROM ruby:3.0.3-bullseye
|
2
|
+
|
3
|
+
WORKDIR /app
|
4
|
+
RUN apt-get update && apt-get -y install lsb-release
|
5
|
+
#
|
6
|
+
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
|
7
|
+
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
|
8
|
+
apt-get update && apt-get -y install postgresql postgresql-client-12
|
9
|
+
|
10
|
+
RUN sh -c 'echo "local all all trust" > /etc/postgresql/14/main/pg_hba.conf' && \
|
11
|
+
service postgresql start && \
|
12
|
+
psql -U postgres -c 'CREATE DATABASE "niceql-test"'
|
13
|
+
|
14
|
+
RUN gem install bundler
|
15
|
+
|
16
|
+
COPY lib/rails_sql_prettifier/version.rb /app/lib/rails_sql_prettifier/version.rb
|
17
|
+
COPY rails_sql_prettifier.gemspec /app/
|
18
|
+
COPY Gemfil* /app/
|
19
|
+
#
|
20
|
+
RUN bundle install
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@ This gem started as a code extraction from niceql version 0.4.x.
|
|
6
6
|
|
7
7
|
It has versioning aligned to the ActiveRecord versions, niceql prior to 0.5 version had hardcoded logic branches based on ActiveRecord versioning.
|
8
8
|
|
9
|
-
That is hard to maintain and hard to test, and also coupling with AR is breaking the original idea of the niceql to be a dependentless solution, so now the niceql is a completely railsfree gem yeay! ( It still has some some checks related to AR
|
9
|
+
That is hard to maintain and hard to test, and also coupling with AR is breaking the original idea of the niceql to be a dependentless solution, so now the niceql is a completely railsfree gem yeay! ( It still has some some checks related to AR implementations in the error prettifying methods. It will be completely decoupled in the future )
|
10
10
|
|
11
11
|
Any reasonable suggestions are welcome.
|
12
12
|
|
@@ -94,8 +94,6 @@ end
|
|
94
94
|
|
95
95
|
## Usage
|
96
96
|
|
97
|
-
### With ActiveRecord
|
98
|
-
|
99
97
|
```ruby
|
100
98
|
# puts colorized and formatted corresponding SQL query
|
101
99
|
Model.scope.niceql
|
@@ -157,7 +155,10 @@ end
|
|
157
155
|
If your console support more colors or different schemes, or if you prefer different colorization, then you can override ColorizeString methods.
|
158
156
|
Current colors were selected with dark and white console themes in mind, so a niceql colorization works good for dark, and good enough for white.
|
159
157
|
|
160
|
-
##
|
158
|
+
## Testing
|
159
|
+
```bash
|
160
|
+
docker-compose up
|
161
|
+
```
|
161
162
|
|
162
163
|
## Contributing
|
163
164
|
|
data/docker-compose.yml
CHANGED
@@ -3,8 +3,17 @@ version: "3.7"
|
|
3
3
|
services:
|
4
4
|
test:
|
5
5
|
build: .
|
6
|
-
image:
|
7
|
-
command: service postgresql start && rake test
|
6
|
+
image: rsp_6_1
|
7
|
+
command: /bin/bash -c 'service postgresql start && rake test'
|
8
|
+
volumes:
|
9
|
+
- '.:/app'
|
10
|
+
|
11
|
+
test_3_0:
|
12
|
+
build:
|
13
|
+
context: .
|
14
|
+
dockerfile: Dockerfile_30
|
15
|
+
image: rsp_6_1_3_0
|
16
|
+
command: /bin/bash -c 'service postgresql start && rake test'
|
8
17
|
volumes:
|
9
18
|
- '.:/app'
|
10
19
|
|
data/lib/rails_sql_prettifier.rb
CHANGED
@@ -28,11 +28,13 @@ module RailsSQLPrettifier
|
|
28
28
|
end
|
29
29
|
|
30
30
|
module AbstractAdapterLogPrettifier
|
31
|
-
|
31
|
+
private
|
32
|
+
def log( sql, *args, **kwargs, &block )
|
32
33
|
# \n need to be placed because AR log will start with action description + time info.
|
33
34
|
# rescue sql - just to be sure Prettifier wouldn't break production
|
34
35
|
formatted_sql = "\n" + Niceql::Prettifier.prettify_sql(sql) rescue sql
|
35
|
-
|
36
|
+
|
37
|
+
super( formatted_sql, *args, **kwargs, &block )
|
36
38
|
end
|
37
39
|
end
|
38
40
|
|
@@ -53,7 +55,6 @@ module RailsSQLPrettifier
|
|
53
55
|
:prettify_pg_errors
|
54
56
|
end
|
55
57
|
|
56
|
-
|
57
58
|
def ar_using_pg_adapter?
|
58
59
|
ActiveRecord::Base.connection_db_config.adapter == 'postgresql'
|
59
60
|
end
|
@@ -38,10 +38,11 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_development_dependency "rake", ">= 12.3.3"
|
39
39
|
spec.add_development_dependency "minitest", "~> 5.0"
|
40
40
|
|
41
|
+
spec.add_development_dependency "awesome_print"
|
41
42
|
spec.add_development_dependency "differ", '~> 0.1'
|
42
43
|
spec.add_development_dependency "pry-byebug", '~> 3.9'
|
43
44
|
spec.add_development_dependency 'sqlite3', '~> 1'
|
44
45
|
spec.add_development_dependency 'pg', '~> 1'
|
45
46
|
|
46
|
-
spec.add_development_dependency 'stubberry', '~> 0.
|
47
|
+
spec.add_development_dependency 'stubberry', '~> 0.2'
|
47
48
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_sql_prettifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alekseyl
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: niceql
|
@@ -86,6 +86,20 @@ dependencies:
|
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '5.0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: awesome_print
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
89
103
|
- !ruby/object:Gem::Dependency
|
90
104
|
name: differ
|
91
105
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,14 +162,14 @@ dependencies:
|
|
148
162
|
requirements:
|
149
163
|
- - "~>"
|
150
164
|
- !ruby/object:Gem::Version
|
151
|
-
version: '0.
|
165
|
+
version: '0.2'
|
152
166
|
type: :development
|
153
167
|
prerelease: false
|
154
168
|
version_requirements: !ruby/object:Gem::Requirement
|
155
169
|
requirements:
|
156
170
|
- - "~>"
|
157
171
|
- !ruby/object:Gem::Version
|
158
|
-
version: '0.
|
172
|
+
version: '0.2'
|
159
173
|
description: 'This is an ActiveRecord integration for the SQL prettifier gem niceql. '
|
160
174
|
email:
|
161
175
|
- leshchuk@gmail.com
|
@@ -170,6 +184,7 @@ files:
|
|
170
184
|
- ".travis.yml"
|
171
185
|
- CHANGELOG.md
|
172
186
|
- Dockerfile
|
187
|
+
- Dockerfile_30
|
173
188
|
- Gemfile
|
174
189
|
- LICENSE.txt
|
175
190
|
- README.md
|