Class: Niceql::NiceQLConfig
- Inherits:
-
Object
- Object
- Niceql::NiceQLConfig
- Defined in:
- lib/niceql.rb
Instance Attribute Summary collapse
-
#indentation_base ⇒ Object
Returns the value of attribute indentation_base.
-
#open_bracket_is_newliner ⇒ Object
Returns the value of attribute open_bracket_is_newliner.
-
#pg_adapter_with_nicesql ⇒ Object
Returns the value of attribute pg_adapter_with_nicesql.
-
#prettify_active_record_log_output ⇒ Object
Returns the value of attribute prettify_active_record_log_output.
-
#prettify_pg_errors ⇒ Object
Returns the value of attribute prettify_pg_errors.
Instance Method Summary collapse
- #ar_using_pg_adapter? ⇒ Boolean
-
#initialize ⇒ NiceQLConfig
constructor
A new instance of NiceQLConfig.
Constructor Details
#initialize ⇒ NiceQLConfig
Returns a new instance of NiceQLConfig.
250 251 252 253 254 255 256 |
# File 'lib/niceql.rb', line 250 def initialize self.pg_adapter_with_nicesql = false self.indentation_base = 2 self.open_bracket_is_newliner = false self.prettify_active_record_log_output = false self.prettify_pg_errors = ar_using_pg_adapter? end |
Instance Attribute Details
#indentation_base ⇒ Object
Returns the value of attribute indentation_base.
243 244 245 |
# File 'lib/niceql.rb', line 243 def indentation_base @indentation_base end |
#open_bracket_is_newliner ⇒ Object
Returns the value of attribute open_bracket_is_newliner.
243 244 245 |
# File 'lib/niceql.rb', line 243 def open_bracket_is_newliner @open_bracket_is_newliner end |
#pg_adapter_with_nicesql ⇒ Object
Returns the value of attribute pg_adapter_with_nicesql.
243 244 245 |
# File 'lib/niceql.rb', line 243 def pg_adapter_with_nicesql @pg_adapter_with_nicesql end |
#prettify_active_record_log_output ⇒ Object
Returns the value of attribute prettify_active_record_log_output.
243 244 245 |
# File 'lib/niceql.rb', line 243 def prettify_active_record_log_output @prettify_active_record_log_output end |
#prettify_pg_errors ⇒ Object
Returns the value of attribute prettify_pg_errors.
243 244 245 |
# File 'lib/niceql.rb', line 243 def prettify_pg_errors @prettify_pg_errors end |
Instance Method Details
#ar_using_pg_adapter? ⇒ Boolean
236 237 238 239 240 241 |
# File 'lib/niceql.rb', line 236 def ar_using_pg_adapter? return false unless defined?(::ActiveRecord::Base) config = ActiveRecord::Base.try(:connection_db_config) || ActiveRecord::Base.try(:connection_config) config&.dig('adapter') == 'postgresql' end |