Sha256: 0ca470b660756b13f941dcb08e2c2bea3f9742005f498d0273ae008dd0a27eb5
Contents?: true
Size: 1.37 KB
Versions: 16
Compression:
Stored size: 1.37 KB
Contents
require 'rails' # Rails engine for Metasploit::Model. Will automatically be used if `Rails` is defined when # 'metasploit/model' is required, as should be the case in any normal Rails application Gemfile where # gem 'rails' is the first gem in the Gemfile. class Metasploit::Model::Engine < Rails::Engine # @see http://viget.com/extend/rails-engine-testing-with-rspec-capybara-and-factorygirl config.generators do |g| g.assets false g.fixture_replacement :factory_girl, :dir => 'spec/factories' g.helper false g.test_framework :rspec, :fixture => false end # Remove ActiveSupport::Dependencies loading paths to save time during constant resolution and to ensure that # metasploit-model is properly declaring all autoloads and not falling back on ActiveSupport::Dependencies config.paths.each_value do |path| path.skip_autoload! path.skip_autoload_once! path.skip_eager_load! path.skip_load_path! end initializer 'metasploit-model.prepend_factory_path', :after => 'factory_girl.set_factory_paths' do if defined? FactoryGirl relative_definition_file_path = config.generators.options[:factory_girl][:dir] definition_file_path = root.join(relative_definition_file_path) # unshift so that dependent gems can modify metasploit-model's factories FactoryGirl.definition_file_paths.unshift definition_file_path end end end
Version data entries
16 entries across 16 versions & 1 rubygems