Sha256: 434892f79b5e978cec50bf18f8c2f47eed32ce71205d6f2f15193481617cc4ac

Contents?: true

Size: 591 Bytes

Versions: 11

Compression:

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

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
taskwarrior-web-1.1.10 spec/spec_helper.rb
taskwarrior-web-1.1.9 spec/spec_helper.rb
taskwarrior-web-1.1.8 spec/spec_helper.rb
taskwarrior-web-1.1.7 spec/spec_helper.rb
taskwarrior-web-1.1.6 spec/spec_helper.rb
taskwarrior-web-1.1.5 spec/spec_helper.rb
taskwarrior-web-1.1.4 spec/spec_helper.rb
taskwarrior-web-1.1.3 spec/spec_helper.rb
taskwarrior-web-1.1.2 spec/spec_helper.rb
taskwarrior-web-1.1.1 spec/spec_helper.rb
taskwarrior-web-1.1.0 spec/spec_helper.rb