Files
SinatraEmotionDetect/Rakefile
Tommy Parnell 48e2440f58 init
2016-01-24 00:45:40 -05:00

10 lines
167 B
Ruby

%w{ bundler find rake/testtask}.each { |lib| require lib }
task :default => :spec
Rake::TestTask.new(:spec) do |t|
t.test_files = FileList['spec/*_spec.rb']
end