Skip to content

Commit

Permalink
update Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ericqweinstein committed Feb 20, 2014
1 parent a8e3c33 commit f25c0b1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion kryptos/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
ENV['RACK_ENV'] ||= 'development'

task :default => :spec

desc 'Run tests'
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = ['--color --format d']
t.pattern = './spec/**/*_spec.rb'
end

0 comments on commit f25c0b1

Please sign in to comment.