require File.expand_path('../boot', __FILE__) # Pick the frameworks you want: # require "active_record/railtie" require "action_controller/railtie" #require "action_mailer/railtie" #require "active_resource/railtie" #require "rails/test_unit/railtie" # If you have a Gemfile, require the gems listed there, including any gems # you've limited to :test, :development, or :production. Bundler.require(:default, Rails.env) if defined?(Bundler) module WatirRails class Application < Rails::Application config.encoding = "utf-8" config.filter_parameters += [:password] config.active_support.deprecation = :stderr end end