Sha256: 9ec766327cb1d02b53153913657ceefcbd26d53bf912e29b4a89a158b3d849b2

Contents?: true

Size: 305 Bytes

Versions: 6

Compression:

Stored size: 305 Bytes

Contents

# desc "Explaining what the task does"
# task :styleguide do
#   # Task goes here
# end

begin
  require 'rspec/core/rake_task'

  desc 'Run all the tests for Woo!'
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.verbose = false
  end

  task :default => :spec
rescue LoadError
  # no rspec available
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
woo-0.1.6 lib/tasks/woo_tasks.rake
woo-0.1.5 lib/tasks/woo_tasks.rake
woo-0.1.4 lib/tasks/woo_tasks.rake
woo-0.1.3 lib/tasks/woo_tasks.rake
woo-0.1.2 lib/tasks/woo_tasks.rake
woo-0.1.0 lib/tasks/woo_tasks.rake