Sha256: e4968653cd55f6cdb3afbcf70acd86800fe8b06322761d512e407e2576dab90d
Contents?: true
Size: 506 Bytes
Versions: 32
Compression:
Stored size: 506 Bytes
Contents
Bundler.setup :default, :test Bundler.require :default, :test RSpec.configure do |config| config.include Rack::Test::Methods # config.before(:suite) do # Praxis::Blueprint.caching_enabled = true # end # config.before(:each) do # Praxis::Blueprint.cache = Hash.new do |hash, key| # hash[key] = Hash.new # end # end end def app Rack::Builder.parse_file(File.expand_path('../config.ru', __dir__)).first rescue => e puts "Application failed to initialize: #{e}" exit 1 end
Version data entries
32 entries across 32 versions & 1 rubygems