Codebase list ruby-fog-vmfusion / 8e38b0d debian / ruby-tests.rake
8e38b0d

Tree @8e38b0d (Download .tar.gz)

ruby-tests.rake @8e38b0draw · history · blame

1
2
3
4
5
6
7
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = './spec/**/*_spec.rb'
end

task :default => :spec