Sha256: 80521e1f8afa455764318d906759f43d2e62b59b51ccb76950928fca79111737

Contents?: true

Size: 550 Bytes

Versions: 5

Compression:

Stored size: 550 Bytes

Contents

require File.expand_path('../boot', __FILE__)

require 'rails/all'

Bundler.require(*Rails.groups)
require 'web_console'

# Require pry-rails if the pry shell is explicitly requested.
require 'pry-rails' if ENV['PRY']

module Dummy
  class Application < Rails::Application
    # When the Dummy application is ran in a docker container, the local
    # computer address is in the 172.16.0.0/12 range. Have it whitelisted.
    config.web_console.whitelisted_ips = %w( 127.0.0.1 172.16.0.0/12 )

    config.active_support.test_order = :random
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
web-console-2.1.3 test/dummy/config/application.rb
web-console-2.1.2 test/dummy/config/application.rb
web-console-2.1.1 test/dummy/config/application.rb
web-console-2.1.0 test/dummy/config/application.rb
web-console-2.0.0 test/dummy/config/application.rb