Sha256: 280e7ad1cdc4f42e429b69177e042589d7cc824e55e7c2b12d4b7ab1f6106279

Contents?: true

Size: 551 Bytes

Versions: 2

Compression:

Stored size: 551 Bytes

Contents

require 'sinatra'
require 'rack/test'
require 'rspec'
require 'simple_navigation'
require 'rspec-html-matchers'

# Simplecov
require 'simplecov'
SimpleCov.start do
  add_filter "spec"
end

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}

RSpec.configure do |config|
  config.mock_with :rspec
end

SimpleNavigation.config_file_paths << File.dirname(__FILE__) + '/../lib/taskwarrior-web/config'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
taskwarrior-web-1.1.12 spec/spec_helper.rb
taskwarrior-web-1.1.11 spec/spec_helper.rb