Sha256: cfc86cbdea2f3459267f0b778c4dbe61d79d6f1d0d54184a32fb7c5fa4bc3878

Contents?: true

Size: 561 Bytes

Versions: 5

Compression:

Stored size: 561 Bytes

Contents

require 'sinatra'
require 'rack/test'
require 'rspec'
require 'simple_navigation'

# 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
  config.include(RSpec::Mocks::Methods)
end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
taskwarrior-web-1.0.14 spec/spec_helper.rb
taskwarrior-web-1.0.13 spec/spec_helper.rb
taskwarrior-web-1.0.12 spec/spec_helper.rb
taskwarrior-web-1.0.11 spec/spec_helper.rb
taskwarrior-web-1.0.10 spec/spec_helper.rb