Class: Brick::Config
Overview
Global configuration affecting all threads. Some thread-specific configuration can be found in ‘brick.rb`, others in `controller.rb`.
Instance Attribute Summary collapse
-
#association_reify_error_behaviour ⇒ Object
Returns the value of attribute association_reify_error_behaviour.
-
#object_changes_adapter ⇒ Object
Returns the value of attribute object_changes_adapter.
-
#root_model ⇒ Object
Returns the value of attribute root_model.
-
#serializer ⇒ Object
Returns the value of attribute serializer.
-
#version_limit ⇒ Object
Returns the value of attribute version_limit.
Instance Method Summary collapse
- #acts_as_list_cols ⇒ Object
-
#acts_as_list_cols=(position_cols) ⇒ Object
Get something like: { ‘on_call_list’ => { _brick_default: [:last_name, :first_name] } } { ‘on_call_list’ => { _brick_default: :sequence } }.
-
#add_orphans ⇒ Object
Add a special page to show references to non-existent records (“orphans”).
-
#add_status ⇒ Object
Add status page showing all resources and what files have been built out for them.
-
#additional_references ⇒ Object
Additional table associations to use (Think of these as virtual foreign keys perhaps).
- #additional_references=(references) ⇒ Object
- #always_load_fields ⇒ Object
- #always_load_fields=(field_set) ⇒ Object
- #api_add_view_prefix ⇒ Object
- #api_add_view_prefix=(view_prefix) ⇒ Object
-
#api_column_renaming ⇒ Object
Allows you to rename and exclude columns either specific to a given API version, or generally for a database object name.
- #api_column_renaming=(renames) ⇒ Object
- #api_filter ⇒ Object
- #api_filter=(proc) ⇒ Object
- #api_remove_view_prefix ⇒ Object
- #api_remove_view_prefix=(view_prefix) ⇒ Object
- #api_roots ⇒ Object
- #api_roots=(path) ⇒ Object
-
#api_view_prefix ⇒ Object
All the view prefix things.
- #api_view_prefix=(view_prefix) ⇒ Object
- #controllers_inherit_from ⇒ Object
- #controllers_inherit_from=(value) ⇒ Object
-
#custom_columns ⇒ Object
Custom columns to add to a table, minimally defined with a name and DSL string.
- #custom_columns=(cust_cols) ⇒ Object
- #default_route_fallback ⇒ Object
- #default_route_fallback=(resource_name) ⇒ Object
-
#defer_references_for_generation ⇒ Object
References to disregard when auto-building migrations, models, and seeds.
- #defer_references_for_generation=(drfg) ⇒ Object
- #enable_api ⇒ Object
- #enable_api=(enable) ⇒ Object
-
#enable_controllers ⇒ Object
Indicates whether Brick controllers are on or off.
- #enable_controllers=(enable) ⇒ Object
-
#enable_models ⇒ Object
Indicates whether Brick models are on or off.
- #enable_models=(enable) ⇒ Object
-
#enable_routes ⇒ Object
Indicates whether Brick routes are on or off.
- #enable_routes=(enable) ⇒ Object
-
#enable_views ⇒ Object
Indicates whether Brick views are on or off.
- #enable_views=(enable) ⇒ Object
- #erd_show_columns ⇒ Object
- #erd_show_columns=(descrips) ⇒ Object
-
#exclude_hms ⇒ Object
Skip creating a has_many association for these.
- #exclude_hms=(skips) ⇒ Object
- #exclude_tables ⇒ Object
- #exclude_tables=(value) ⇒ Object
-
#has_ones ⇒ Object
Associations to treat as a has_one.
- #has_ones=(hos) ⇒ Object
-
#hmts ⇒ Object
Associations for which to auto-create a has_many _, through: _.
- #hmts=(assocs) ⇒ Object
- #ignore_migration_fks ⇒ Object
- #ignore_migration_fks=(relations) ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #json_columns ⇒ Object
- #json_columns=(cols) ⇒ Object
- #license ⇒ Object
- #license=(key) ⇒ Object
-
#limit_carrierwave ⇒ Object
Restrict all Carrierwave images when set to
true
, or limit to the first n number if set to an Integer. - #limit_carrierwave=(num) ⇒ Object
- #metadata_columns ⇒ Object
- #metadata_columns=(columns) ⇒ Object
- #mode ⇒ Object
- #mode=(setting) ⇒ Object
- #model_descrips ⇒ Object
- #model_descrips=(descrips) ⇒ Object
- #models_inherit_from ⇒ Object
- #models_inherit_from=(value) ⇒ Object
-
#nested_attributes ⇒ Object
Associations upon which to add #accepts_nested_attributes_for logic.
- #nested_attributes=(anaf) ⇒ Object
- #not_nullables ⇒ Object
- #not_nullables=(columns) ⇒ Object
- #omit_empty_tables_in_dropdown ⇒ Object
- #omit_empty_tables_in_dropdown=(field_set) ⇒ Object
- #order ⇒ Object
-
#order=(orders) ⇒ Object
Get something like: Override how code sorts with: { ‘on_call_list’ => { code: “ORDER BY STRING_TO_ARRAY(code, ‘.’)::int[]” } } Specify default thing to order_by with: { ‘on_call_list’ => { _brick_default: [:last_name, :first_name] } } { ‘on_call_list’ => { _brick_default: :sequence } }.
-
#path_prefix ⇒ Object
Any path prefixing to apply to all auto-generated Brick routes.
- #path_prefix=(path) ⇒ Object
-
#polymorphics ⇒ Object
Polymorphic associations.
- #polymorphics=(polys) ⇒ Object
- #schema_behavior ⇒ Object
- #schema_behavior=(schema) ⇒ Object
- #sidescroll ⇒ Object
- #sidescroll=(scroll) ⇒ Object
- #skip_database_views ⇒ Object
- #skip_database_views=(disable) ⇒ Object
-
#skip_index_hms ⇒ Object
Skip showing counts for these specific has_many associations when building auto-generated #index views.
- #skip_index_hms=(skips) ⇒ Object
- #sti_namespace_prefixes ⇒ Object
- #sti_namespace_prefixes=(prefixes) ⇒ Object
- #sti_type_column ⇒ Object
- #sti_type_column=(type_col) ⇒ Object
- #table_name_prefixes ⇒ Object
- #table_name_prefixes=(value) ⇒ Object
-
#treat_as_associative ⇒ Object
Tables to treat as associative, even when they have data columns.
- #treat_as_associative=(tables) ⇒ Object
- #treat_as_module ⇒ Object
- #treat_as_module=(mod_names) ⇒ Object
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
14 15 16 17 18 19 20 21 |
# File 'lib/brick/config.rb', line 14 def initialize # Variables which affect all threads, whose access is synchronized. @mutex = Mutex.new @enabled = true # Variables which affect all threads, whose access is *not* synchronized. @serializer = Brick::Serializers::YAML end |
Instance Attribute Details
#association_reify_error_behaviour ⇒ Object
Returns the value of attribute association_reify_error_behaviour.
11 12 13 |
# File 'lib/brick/config.rb', line 11 def association_reify_error_behaviour @association_reify_error_behaviour end |
#object_changes_adapter ⇒ Object
Returns the value of attribute object_changes_adapter.
11 12 13 |
# File 'lib/brick/config.rb', line 11 def object_changes_adapter @object_changes_adapter end |
#root_model ⇒ Object
Returns the value of attribute root_model.
11 12 13 |
# File 'lib/brick/config.rb', line 11 def root_model @root_model end |
#serializer ⇒ Object
Returns the value of attribute serializer.
11 12 13 |
# File 'lib/brick/config.rb', line 11 def serializer @serializer end |
#version_limit ⇒ Object
Returns the value of attribute version_limit.
11 12 13 |
# File 'lib/brick/config.rb', line 11 def version_limit @version_limit end |
Instance Method Details
#acts_as_list_cols ⇒ Object
433 434 435 |
# File 'lib/brick/config.rb', line 433 def acts_as_list_cols @mutex.synchronize { @acts_as_list || {} } end |
#acts_as_list_cols=(position_cols) ⇒ Object
Get something like:
{ 'on_call_list' => { _brick_default: [:last_name, :first_name] } }
{ 'on_call_list' => { _brick_default: :sequence } }
440 441 442 443 444 |
# File 'lib/brick/config.rb', line 440 def acts_as_list_cols=(position_cols) @mutex.synchronize do @acts_as_list ||= position_cols end end |
#add_orphans ⇒ Object
Add a special page to show references to non-existent records (“orphans”)
492 493 494 |
# File 'lib/brick/config.rb', line 492 def add_orphans true end |
#add_status ⇒ Object
Add status page showing all resources and what files have been built out for them
487 488 489 |
# File 'lib/brick/config.rb', line 487 def add_status true end |
#additional_references ⇒ Object
Additional table associations to use (Think of these as virtual foreign keys perhaps)
159 160 161 |
# File 'lib/brick/config.rb', line 159 def additional_references @mutex.synchronize { @additional_references } end |
#additional_references=(references) ⇒ Object
163 164 165 |
# File 'lib/brick/config.rb', line 163 def additional_references=(references) @mutex.synchronize { @additional_references = references } end |
#always_load_fields ⇒ Object
470 471 472 |
# File 'lib/brick/config.rb', line 470 def always_load_fields @mutex.synchronize { @always_load_fields || {} } end |
#always_load_fields=(field_set) ⇒ Object
474 475 476 |
# File 'lib/brick/config.rb', line 474 def always_load_fields=(field_set) @mutex.synchronize { @always_load_fields = field_set } end |
#api_add_view_prefix ⇒ Object
150 151 152 |
# File 'lib/brick/config.rb', line 150 def api_add_view_prefix @mutex.synchronize { @api_add_view_prefix || @api_view_prefix } end |
#api_add_view_prefix=(view_prefix) ⇒ Object
154 155 156 |
# File 'lib/brick/config.rb', line 154 def api_add_view_prefix=(view_prefix) @mutex.synchronize { @api_add_view_prefix = view_prefix } end |
#api_column_renaming ⇒ Object
Allows you to rename and exclude columns either specific to a given API version, or generally for a database object name
125 126 127 |
# File 'lib/brick/config.rb', line 125 def api_column_renaming @mutex.synchronize { @api_column_renaming } end |
#api_column_renaming=(renames) ⇒ Object
129 130 131 |
# File 'lib/brick/config.rb', line 129 def api_column_renaming=(renames) @mutex.synchronize { @api_column_renaming = renames } end |
#api_filter ⇒ Object
106 107 108 |
# File 'lib/brick/config.rb', line 106 def api_filter @mutex.synchronize { @api_filter } end |
#api_filter=(proc) ⇒ Object
110 111 112 |
# File 'lib/brick/config.rb', line 110 def api_filter=(proc) @mutex.synchronize { @api_filter = proc } end |
#api_remove_view_prefix ⇒ Object
142 143 144 |
# File 'lib/brick/config.rb', line 142 def api_remove_view_prefix @mutex.synchronize { @api_remove_view_prefix || @api_view_prefix } end |
#api_remove_view_prefix=(view_prefix) ⇒ Object
146 147 148 |
# File 'lib/brick/config.rb', line 146 def api_remove_view_prefix=(view_prefix) @mutex.synchronize { @api_remove_view_prefix = view_prefix } end |
#api_roots ⇒ Object
98 99 100 |
# File 'lib/brick/config.rb', line 98 def api_roots @mutex.synchronize { @api_roots || ["/api/v1/"] } end |
#api_roots=(path) ⇒ Object
102 103 104 |
# File 'lib/brick/config.rb', line 102 def api_roots=(path) @mutex.synchronize { @api_roots = path } end |
#api_view_prefix ⇒ Object
All the view prefix things
134 135 136 |
# File 'lib/brick/config.rb', line 134 def api_view_prefix @mutex.synchronize { @api_view_prefix } end |
#api_view_prefix=(view_prefix) ⇒ Object
138 139 140 |
# File 'lib/brick/config.rb', line 138 def api_view_prefix=(view_prefix) @mutex.synchronize { @api_view_prefix = view_prefix } end |
#controllers_inherit_from ⇒ Object
385 386 387 |
# File 'lib/brick/config.rb', line 385 def controllers_inherit_from @mutex.synchronize { @controllers_inherit_from } end |
#controllers_inherit_from=(value) ⇒ Object
389 390 391 |
# File 'lib/brick/config.rb', line 389 def controllers_inherit_from=(value) @mutex.synchronize { @controllers_inherit_from = value } end |
#custom_columns ⇒ Object
Custom columns to add to a table, minimally defined with a name and DSL string
177 178 179 |
# File 'lib/brick/config.rb', line 177 def custom_columns @mutex.synchronize { @custom_columns } end |
#custom_columns=(cust_cols) ⇒ Object
181 182 183 |
# File 'lib/brick/config.rb', line 181 def custom_columns=(cust_cols) @mutex.synchronize { @custom_columns = cust_cols } end |
#default_route_fallback ⇒ Object
353 354 355 |
# File 'lib/brick/config.rb', line 353 def default_route_fallback @mutex.synchronize { @default_route_fallback } end |
#default_route_fallback=(resource_name) ⇒ Object
357 358 359 |
# File 'lib/brick/config.rb', line 357 def default_route_fallback=(resource_name) @mutex.synchronize { @default_route_fallback = resource_name } end |
#defer_references_for_generation ⇒ Object
References to disregard when auto-building migrations, models, and seeds
168 169 170 |
# File 'lib/brick/config.rb', line 168 def defer_references_for_generation @mutex.synchronize { @defer_references_for_generation } end |
#defer_references_for_generation=(drfg) ⇒ Object
172 173 174 |
# File 'lib/brick/config.rb', line 172 def defer_references_for_generation=(drfg) @mutex.synchronize { @defer_references_for_generation = drfg } end |
#enable_api ⇒ Object
90 91 92 |
# File 'lib/brick/config.rb', line 90 def enable_api @mutex.synchronize { @enable_api } end |
#enable_api=(enable) ⇒ Object
94 95 96 |
# File 'lib/brick/config.rb', line 94 def enable_api=(enable) @mutex.synchronize { @enable_api = enable } end |
#enable_controllers ⇒ Object
Indicates whether Brick controllers are on or off. Default: true.
61 62 63 64 |
# File 'lib/brick/config.rb', line 61 def enable_controllers brick_mode = mode @mutex.synchronize { brick_mode == :on && (@enable_controllers.nil? || @enable_controllers) } end |
#enable_controllers=(enable) ⇒ Object
66 67 68 |
# File 'lib/brick/config.rb', line 66 def enable_controllers=(enable) @mutex.synchronize { @enable_controllers = enable } end |
#enable_models ⇒ Object
Indicates whether Brick models are on or off. Default: true.
51 52 53 54 |
# File 'lib/brick/config.rb', line 51 def enable_models brick_mode = mode @mutex.synchronize { brick_mode == :on && (@enable_models.nil? || @enable_models) } end |
#enable_models=(enable) ⇒ Object
56 57 58 |
# File 'lib/brick/config.rb', line 56 def enable_models=(enable) @mutex.synchronize { @enable_models = enable } end |
#enable_routes ⇒ Object
Indicates whether Brick routes are on or off. Default: true.
81 82 83 84 |
# File 'lib/brick/config.rb', line 81 def enable_routes brick_mode = mode @mutex.synchronize { brick_mode == :on && (@enable_routes.nil? || @enable_routes) } end |
#enable_routes=(enable) ⇒ Object
86 87 88 |
# File 'lib/brick/config.rb', line 86 def enable_routes=(enable) @mutex.synchronize { @enable_routes = enable } end |
#enable_views ⇒ Object
Indicates whether Brick views are on or off. Default: true.
71 72 73 74 |
# File 'lib/brick/config.rb', line 71 def enable_views brick_mode = mode @mutex.synchronize { brick_mode == :on && (@enable_views.nil? || @enable_views) } end |
#enable_views=(enable) ⇒ Object
76 77 78 |
# File 'lib/brick/config.rb', line 76 def enable_views=(enable) @mutex.synchronize { @enable_views = enable } end |
#erd_show_columns ⇒ Object
307 308 309 |
# File 'lib/brick/config.rb', line 307 def erd_show_columns @mutex.synchronize { @erd_show_columns ||= [] } end |
#erd_show_columns=(descrips) ⇒ Object
311 312 313 |
# File 'lib/brick/config.rb', line 311 def erd_show_columns=(descrips) @mutex.synchronize { @erd_show_columns = descrips } end |
#exclude_hms ⇒ Object
Skip creating a has_many association for these
186 187 188 |
# File 'lib/brick/config.rb', line 186 def exclude_hms @mutex.synchronize { @exclude_hms } end |
#exclude_hms=(skips) ⇒ Object
190 191 192 |
# File 'lib/brick/config.rb', line 190 def exclude_hms=(skips) @mutex.synchronize { @exclude_hms = skips } end |
#exclude_tables ⇒ Object
369 370 371 |
# File 'lib/brick/config.rb', line 369 def exclude_tables @mutex.synchronize { @exclude_tables || [] } end |
#exclude_tables=(value) ⇒ Object
373 374 375 |
# File 'lib/brick/config.rb', line 373 def exclude_tables=(value) @mutex.synchronize { @exclude_tables = value } end |
#has_ones ⇒ Object
Associations to treat as a has_one
209 210 211 |
# File 'lib/brick/config.rb', line 209 def has_ones @mutex.synchronize { @has_ones } end |
#has_ones=(hos) ⇒ Object
213 214 215 |
# File 'lib/brick/config.rb', line 213 def has_ones=(hos) @mutex.synchronize { @has_ones = hos } end |
#hmts ⇒ Object
Associations for which to auto-create a has_many _, through: _
227 228 229 |
# File 'lib/brick/config.rb', line 227 def hmts @mutex.synchronize { @hmts } end |
#hmts=(assocs) ⇒ Object
231 232 233 |
# File 'lib/brick/config.rb', line 231 def hmts=(assocs) @mutex.synchronize { @hmts = assocs } end |
#ignore_migration_fks ⇒ Object
478 479 480 |
# File 'lib/brick/config.rb', line 478 def ignore_migration_fks @mutex.synchronize { @ignore_migration_fks || [] } end |
#ignore_migration_fks=(relations) ⇒ Object
482 483 484 |
# File 'lib/brick/config.rb', line 482 def ignore_migration_fks=(relations) @mutex.synchronize { @ignore_migration_fks = relations } end |
#json_columns ⇒ Object
271 272 273 |
# File 'lib/brick/config.rb', line 271 def json_columns @mutex.synchronize { @json_columns ||= {} } end |
#json_columns=(cols) ⇒ Object
275 276 277 |
# File 'lib/brick/config.rb', line 275 def json_columns=(cols) @mutex.synchronize { @json_columns = cols } end |
#license ⇒ Object
496 497 498 |
# File 'lib/brick/config.rb', line 496 def license @mutex.synchronize { @license } end |
#license=(key) ⇒ Object
500 501 502 |
# File 'lib/brick/config.rb', line 500 def license=(key) @mutex.synchronize { @license = key } end |
#limit_carrierwave ⇒ Object
Restrict all Carrierwave images when set to true
, or limit to the first n number if set to an Integer
281 282 283 284 285 |
# File 'lib/brick/config.rb', line 281 def limit_carrierwave # When not set then by default just do a max of 50 images so that # a grid of say 1000 things won't bring the page to its knees @mutex.synchronize { @limit_carrierwave ||= 50 } end |
#limit_carrierwave=(num) ⇒ Object
287 288 289 |
# File 'lib/brick/config.rb', line 287 def limit_carrierwave=(num) @mutex.synchronize { @limit_carrierwave = num } end |
#metadata_columns ⇒ Object
446 447 448 |
# File 'lib/brick/config.rb', line 446 def @mutex.synchronize { @metadata_columns ||= ['created_at', 'updated_at', 'deleted_at'] } end |
#metadata_columns=(columns) ⇒ Object
450 451 452 |
# File 'lib/brick/config.rb', line 450 def (columns) @mutex.synchronize { @metadata_columns = columns } end |
#mode ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/brick/config.rb', line 23 def mode rails_env = Object.const_defined?('Rails') && ::Rails.env @mutex.synchronize do case @brick_mode when nil, :development (rails_env == 'development' || ENV.key?('BRICK')) ? :on : nil when :diag_env ENV.key?('BRICK') ? :on : nil else @brick_mode end end end |
#mode=(setting) ⇒ Object
37 38 39 |
# File 'lib/brick/config.rb', line 37 def mode=(setting) @mutex.synchronize { @brick_mode = setting unless @brick_mode == :on } end |
#model_descrips ⇒ Object
299 300 301 |
# File 'lib/brick/config.rb', line 299 def model_descrips @mutex.synchronize { @model_descrips ||= {} } end |
#model_descrips=(descrips) ⇒ Object
303 304 305 |
# File 'lib/brick/config.rb', line 303 def model_descrips=(descrips) @mutex.synchronize { @model_descrips = descrips } end |
#models_inherit_from ⇒ Object
377 378 379 |
# File 'lib/brick/config.rb', line 377 def models_inherit_from @mutex.synchronize { @models_inherit_from } end |
#models_inherit_from=(value) ⇒ Object
381 382 383 |
# File 'lib/brick/config.rb', line 381 def models_inherit_from=(value) @mutex.synchronize { @models_inherit_from = value } end |
#nested_attributes ⇒ Object
Associations upon which to add #accepts_nested_attributes_for logic
218 219 220 |
# File 'lib/brick/config.rb', line 218 def nested_attributes @mutex.synchronize { @nested_attributes } end |
#nested_attributes=(anaf) ⇒ Object
222 223 224 |
# File 'lib/brick/config.rb', line 222 def nested_attributes=(anaf) @mutex.synchronize { @nested_attributes = anaf } end |
#not_nullables ⇒ Object
454 455 456 |
# File 'lib/brick/config.rb', line 454 def not_nullables @mutex.synchronize { @not_nullables } end |
#not_nullables=(columns) ⇒ Object
458 459 460 |
# File 'lib/brick/config.rb', line 458 def not_nullables=(columns) @mutex.synchronize { @not_nullables = columns } end |
#omit_empty_tables_in_dropdown ⇒ Object
462 463 464 |
# File 'lib/brick/config.rb', line 462 def omit_empty_tables_in_dropdown @mutex.synchronize { @omit_empty_tables_in_dropdown } end |
#omit_empty_tables_in_dropdown=(field_set) ⇒ Object
466 467 468 |
# File 'lib/brick/config.rb', line 466 def omit_empty_tables_in_dropdown=(field_set) @mutex.synchronize { @omit_empty_tables_in_dropdown = field_set } end |
#order ⇒ Object
409 410 411 |
# File 'lib/brick/config.rb', line 409 def order @mutex.synchronize { @order || {} } end |
#order=(orders) ⇒ Object
Get something like: Override how code sorts with:
{ 'on_call_list' => { code: "ORDER BY STRING_TO_ARRAY(code, '.')::int[]" } }
Specify default thing to order_by with:
{ 'on_call_list' => { _brick_default: [:last_name, :first_name] } }
{ 'on_call_list' => { _brick_default: :sequence } }
419 420 421 422 423 424 425 426 427 428 429 430 431 |
# File 'lib/brick/config.rb', line 419 def order=(orders) @mutex.synchronize do case (brick_default = orders.fetch(:_brick_default, nil)) when NilClass orders[:_brick_default] = orders.keys.reject { |k| k == :_brick_default }.first when String orders[:_brick_default] = [brick_default.to_sym] when Symbol orders[:_brick_default] = [brick_default] end @order = orders end end |
#path_prefix ⇒ Object
Any path prefixing to apply to all auto-generated Brick routes
42 43 44 |
# File 'lib/brick/config.rb', line 42 def path_prefix @mutex.synchronize { @path_prefix } end |
#path_prefix=(path) ⇒ Object
46 47 48 |
# File 'lib/brick/config.rb', line 46 def path_prefix=(path) @mutex.synchronize { @path_prefix = path } end |
#polymorphics ⇒ Object
Polymorphic associations
263 264 265 |
# File 'lib/brick/config.rb', line 263 def polymorphics @mutex.synchronize { @polymorphics ||= {} } end |
#polymorphics=(polys) ⇒ Object
267 268 269 |
# File 'lib/brick/config.rb', line 267 def polymorphics=(polys) @mutex.synchronize { @polymorphics = polys } end |
#schema_behavior ⇒ Object
323 324 325 |
# File 'lib/brick/config.rb', line 323 def schema_behavior @mutex.synchronize { @schema_behavior ||= {} } end |
#schema_behavior=(schema) ⇒ Object
327 328 329 |
# File 'lib/brick/config.rb', line 327 def schema_behavior=(schema) @mutex.synchronize { @schema_behavior = schema } end |
#sidescroll ⇒ Object
291 292 293 |
# File 'lib/brick/config.rb', line 291 def sidescroll @mutex.synchronize { @sidescroll ||= {} } end |
#sidescroll=(scroll) ⇒ Object
295 296 297 |
# File 'lib/brick/config.rb', line 295 def sidescroll=(scroll) @mutex.synchronize { @sidescroll = scroll } end |
#skip_database_views ⇒ Object
361 362 363 |
# File 'lib/brick/config.rb', line 361 def skip_database_views @mutex.synchronize { @skip_database_views } end |
#skip_database_views=(disable) ⇒ Object
365 366 367 |
# File 'lib/brick/config.rb', line 365 def skip_database_views=(disable) @mutex.synchronize { @skip_database_views = disable } end |
#skip_index_hms ⇒ Object
Skip showing counts for these specific has_many associations when building auto-generated #index views
195 196 197 |
# File 'lib/brick/config.rb', line 195 def skip_index_hms @mutex.synchronize { @skip_index_hms || {} } end |
#skip_index_hms=(skips) ⇒ Object
199 200 201 202 203 204 205 206 |
# File 'lib/brick/config.rb', line 199 def skip_index_hms=(skips) @mutex.synchronize do @skip_index_hms ||= skips.each_with_object({}) do |v, s| class_name, assoc_name = v.split('.') (s[class_name] ||= {})[assoc_name.to_sym] = nil end end end |
#sti_namespace_prefixes ⇒ Object
315 316 317 |
# File 'lib/brick/config.rb', line 315 def sti_namespace_prefixes @mutex.synchronize { @sti_namespace_prefixes ||= {} } end |
#sti_namespace_prefixes=(prefixes) ⇒ Object
319 320 321 |
# File 'lib/brick/config.rb', line 319 def sti_namespace_prefixes=(prefixes) @mutex.synchronize { @sti_namespace_prefixes = prefixes } end |
#sti_type_column ⇒ Object
331 332 333 |
# File 'lib/brick/config.rb', line 331 def sti_type_column @mutex.synchronize { @sti_type_column ||= {} } end |
#sti_type_column=(type_col) ⇒ Object
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
# File 'lib/brick/config.rb', line 335 def sti_type_column=(type_col) @mutex.synchronize do (@sti_type_column = type_col).each_with_object({}) do |v, s| if v.last.nil? # Set an STI type column generally ActiveRecord::Base.inheritance_column = v.first else # Custom STI type columns for models built from specific tables (v.last.is_a?(Array) ? v.last : [v.last]).each do |table| if (relation = ::Brick.relations.fetch(table, nil)) relation[:sti_col] = v.first end end end end end end |
#table_name_prefixes ⇒ Object
393 394 395 |
# File 'lib/brick/config.rb', line 393 def table_name_prefixes @mutex.synchronize { @table_name_prefixes ||= {} } end |
#table_name_prefixes=(value) ⇒ Object
397 398 399 |
# File 'lib/brick/config.rb', line 397 def table_name_prefixes=(value) @mutex.synchronize { @table_name_prefixes = value } end |
#treat_as_associative ⇒ Object
Tables to treat as associative, even when they have data columns
236 237 238 |
# File 'lib/brick/config.rb', line 236 def treat_as_associative @mutex.synchronize { @treat_as_associative } end |
#treat_as_associative=(tables) ⇒ Object
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/brick/config.rb', line 240 def treat_as_associative=(tables) @mutex.synchronize do @treat_as_associative = if tables.is_a?(Hash) tables.each_with_object({}) do |v, s| # If it's :constellation, or anything else in a hash, we'll take its value # (and hopefully in this case that would be either a string or nil) # binding.pry dsl = ((v.last.is_a?(Symbol) && v.last) || v.last&.values&.last) unless (dsl ||= '').is_a?(String) || dsl.is_a?(Symbol) puts "Was really expecting #{v.first} / #{v.last.first&.first} / #{dsl} to be a string, " + "so will disregard #{dsl} and just turn on simple constellation view for #{v.first}." end s[v.first] = v.last.is_a?(Hash) ? dsl : v.last end elsif tables.is_a?(String) # comma-separated list? tables.split(',').each_with_object({}) { |v, s| s[v.trim] = nil } else # Expecting an Array, and have no special presentation tables&.each_with_object({}) { |v, s| s[v] = nil } end end end |
#treat_as_module ⇒ Object
401 402 403 |
# File 'lib/brick/config.rb', line 401 def treat_as_module @mutex.synchronize { @treat_as_module || [] } end |
#treat_as_module=(mod_names) ⇒ Object
405 406 407 |
# File 'lib/brick/config.rb', line 405 def treat_as_module=(mod_names) @mutex.synchronize { @treat_as_module = mod_names } end |