Sha256: 0b2b4f141495b28eaddc369427b266dbf67ab5796d41e09b5af949ea54e3ed6b
Contents?: true
Size: 665 Bytes
Versions: 73
Compression:
Stored size: 665 Bytes
Contents
RailsDb.setup do |config| # # enabled or not # config.enabled = true # automatic engine routes mouting config.automatic_routes_mount = false # set tables which you want to hide ONLY # config.black_list_tables = ['users'] # set tables which you want to show ONLY # config.white_list_tables = ['comments'] # # Enable http basic authentication # config.http_basic_authentication_enabled = true # # Enable http basic authentication # config.http_basic_authentication_user_name = 'rails_db' # # Enable http basic authentication # config.http_basic_authentication_password = 'password' config.verify_access_proc = proc { |e| true } end
Version data entries
73 entries across 41 versions & 2 rubygems