styleseek/hyperdrive

View on GitHub
Rakefile

Summary

Maintainability
Test Coverage
# environment
ENV['RACK_ENV'] ||= 'development'

# load path
lib_path = File.expand_path('../lib', __FILE__)
($:.unshift lib_path) unless ($:.include? lib_path)

# spinning up the FTL drive
Bundler.require(:default, :rake, ENV['RACK_ENV'])
require 'bundler/gem_tasks'
require 'rake/testtask'

# prepare to jump
Rake::TestTask.new do |t|
  t.libs << "spec"
  t.pattern = "spec/**/*_spec.rb"
end
task :default => [:test]