niceql 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/niceql/version.rb +1 -1
- data/niceql.gemspec +2 -2
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfbeddac683e41bcbbc3d8fc2c42fcbb505a6d129c58dc9653a93650317c8125
|
|
4
|
+
data.tar.gz: e4de50a94af55592a2f31ced37b6a1986abdea37ca462ce529bd7bdfabde08be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64dc4d5869ee5e79b408b99fe963bcafd595d44a8c8495e72429d104478ee6811b8eba211ef13527e060746a52e4c4a6c192e17aef95237c6d79248b0a421a12
|
|
7
|
+
data.tar.gz: 865161e1af50386a06a98ba9e1af708f388f44f96f2566fb3f0695ac4756a66030731c8f8e603d5f7c88a009d4a6f4d840c0c2d9f140e81500411cccba17ee41
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# 0.3.0
|
|
2
|
+
* ruby forced to >= 2.4
|
|
3
|
+
* String match extension no longer needed
|
|
4
|
+
* fixed issue with missing HINT and DETAIL string ( https://github.com/alekseyl/niceql/issues/18 )
|
|
5
|
+
* both new and old activerecord StatementInvalid formats supported
|
|
6
|
+
* major prettify_pg_err refactoring ( much cleaner code now )
|
|
7
|
+
|
|
1
8
|
# 0.2.0
|
|
2
9
|
* Fix to issue https://github.com/alekseyl/niceql/pull/17#issuecomment-924278172. ActiveRecord base config is no longer a hash,
|
|
3
10
|
so it does not have dig method, hence it's breaking the ar_using_pg_adapter? method.
|
data/lib/niceql/version.rb
CHANGED
data/niceql.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["alekseyl"]
|
|
10
10
|
spec.email = ["leshchuk@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{This is simple and nice sql
|
|
13
|
-
spec.description = %q{This is simple and nice sql
|
|
12
|
+
spec.summary = %q{This is simple and nice gem for sql prettifying and formatting. Niceql splits, indent and colorize SQL query and PG errors if any }
|
|
13
|
+
spec.description = %q{This is simple and nice gem for sql prettifying and formatting. Niceql splits, indent and colorize SQL query and PG errors if any. Seemless activerecord integration }
|
|
14
14
|
spec.homepage = "https://github.com/alekseyl/niceql"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: niceql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- alekseyl
|
|
@@ -122,8 +122,9 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
-
description: 'This is simple and nice
|
|
126
|
-
SQL query and PG
|
|
125
|
+
description: 'This is simple and nice gem for sql prettifying and formatting. Niceql
|
|
126
|
+
splits, indent and colorize SQL query and PG errors if any. Seemless activerecord
|
|
127
|
+
integration '
|
|
127
128
|
email:
|
|
128
129
|
- leshchuk@gmail.com
|
|
129
130
|
executables: []
|
|
@@ -173,6 +174,6 @@ requirements: []
|
|
|
173
174
|
rubygems_version: 3.1.4
|
|
174
175
|
signing_key:
|
|
175
176
|
specification_version: 4
|
|
176
|
-
summary: This is simple and nice
|
|
177
|
-
query and PG errors if any
|
|
177
|
+
summary: This is simple and nice gem for sql prettifying and formatting. Niceql splits,
|
|
178
|
+
indent and colorize SQL query and PG errors if any
|
|
178
179
|
test_files: []
|