public
Fork of james/ruminant
Description: A ruby library to regurgitate MOO products
Homepage:
Clone URL: git://github.com/infovore/ruminant.git
ruminant / Rakefile
100644 7 lines (7 sloc) 0.213 kb
1
2
3
4
5
6
7
desc "Run all specs"
task :spec do
  dir = File.expand_path(File.dirname(__FILE__) + '/spec')
  Dir[File.expand_path("#{dir}/**/*.rb")].uniq.each do |file|
    require file unless file.include?("helper")
  end
end