Sha256: 5c84ddbd350bccd6dc335726469cb265fdc987af8823a053850eac79ed9fc061
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
module Konacha class Engine < Rails::Engine # Do not mess up the application's namespace. # http://api.rubyonrails.org/classes/Rails/Engine.html#label-Isolated+Engine isolate_namespace Konacha config.konacha = ActiveSupport::OrderedOptions.new def self.application(app) Rack::Builder.app do use Rack::ShowExceptions map app.config.assets.prefix do run app.assets end map "/" do run Engine end end end initializer "konacha.environment" do |app| unless app.config.assets.enabled raise RuntimeError, "konacha requires the asset pipeline to be enabled" end options = app.config.konacha options.spec_dir ||= "spec/javascripts" options.spec_matcher ||= /_spec\.|_test\./ options.port ||= 3500 options.application ||= self.class.application(app) options.driver ||= :selenium options.stylesheets ||= %w(application) options.verbose ||= false options.runner_port ||= nil app.config.assets.paths << app.root.join(options.spec_dir).to_s end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
konacha-2.5.0 | lib/konacha/engine.rb |