Sha256: 198d8bbd6e6699e9aff417550f027ea8db74443141e29b7c659c4251dfe5f26d

Contents?: true

Size: 305 Bytes

Versions: 9

Compression:

Stored size: 305 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  # Put spec opts in a file named .rspec in root
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
panoptimon-0.4.5 Rakefile
panoptimon-0.4.4 Rakefile
panoptimon-0.4.2 Rakefile
panoptimon-0.4.1 Rakefile
panoptimon-0.4.0 Rakefile
panoptimon-0.3.0 Rakefile
panoptimon-0.2.0 Rakefile
panoptimon-0.1.0 Rakefile
panoptimon-0.0.2 Rakefile