public
Description: Official GitHub Services Integration
Homepage: http://github.com/blog/53-github-services-ipo
Clone URL: git://github.com/pjhyett/github-services.git
github-services / Rakefile
100644 9 lines (6 sloc) 0.193 kb
1
2
3
4
5
6
7
8
9
require 'spec/rake/spectask'
 
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_opts = ['--options', "spec/spec.opts"]
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
task :default => :spec