niceql 0.1.15 → 0.1.16
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 +3 -0
- data/README.md +4 -0
- data/lib/generators/templates/niceql_initializer.rb +3 -0
- data/lib/niceql/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74fac1f8e6213748766ad42774bf8709b5acff43
|
|
4
|
+
data.tar.gz: 5ed4e1400203de4cd5b049beda67a6a535c528f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec87b1f2aca25e59a17dd687febe0bf83e9f5e238a98f628ce2a4e9958dbfb725f3dc3c4da56c497af2ebdfc578806df9cf511397a19f160ed4c6036d8028655
|
|
7
|
+
data.tar.gz: 19631eaab9bedf8ffbad5ee86e217f9e7da50e662d12114aef165d0953d1977b8474253e1b2f3c508fcb71075dc2c068a477ecad4c5980f498992b7a5ff0b323
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -49,6 +49,10 @@ Niceql.configure do |c|
|
|
|
49
49
|
# uncomment next string to enable in development
|
|
50
50
|
# c.pg_adapter_with_nicesql = Rails.env.development?
|
|
51
51
|
|
|
52
|
+
# uncomment next string if you want to log prettified SQL inside ActiveRecord logging.
|
|
53
|
+
# Default = false
|
|
54
|
+
# c.prettify_active_record_log_output = true
|
|
55
|
+
|
|
52
56
|
# spaces count for one indentation
|
|
53
57
|
c.indentation_base = 2
|
|
54
58
|
|
|
@@ -3,6 +3,9 @@ Niceql.configure do |c|
|
|
|
3
3
|
# If you need it in production use exec_niceql
|
|
4
4
|
# default: false
|
|
5
5
|
# c.pg_adapter_with_nicesql = Rails.env.development?
|
|
6
|
+
|
|
7
|
+
# this are default settings, change it to your project needs
|
|
6
8
|
# c.indentation_base = 2
|
|
7
9
|
# c.open_bracket_is_newliner = false
|
|
10
|
+
# c.prettify_active_record_log_output = false
|
|
8
11
|
end
|
data/lib/niceql/version.rb
CHANGED