public
Description: A simple Ruby on Rails plugin to keep track of plugins maintained in external Git repositories (think svn externals)
Homepage:
Clone URL: git://github.com/peter/git_plugins.git
git_plugins / Rakefile
100644 12 lines (9 sloc) 0.278 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rake'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ['--colour --format specdoc --loadby mtime --reverse']
  t.spec_files = FileList['spec/**/*_spec.rb']
end