Sha256: de82c086cacd7f036920416e830d3618cb344cb3f4fb9cdb682af003965e91f8

Contents?: true

Size: 479 Bytes

Versions: 4

Compression:

Stored size: 479 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core/rake_task'

task :default => :test

RSpec::Core::RakeTask.new("test:spec") do |t|
    t.pattern = 'spec/**/*_spec.rb'
    t.rspec_opts = '--fail-fast -b -c -f documentation --tag ~benchmark'
end

desc 'Run test suite'
task :test => [ 'test:spec' ]

desc "Run benchmark suite"
task :benchmark do
  require 'akero/benchmark'
  Akero::Benchmark.run!
end

namespace :docs do
  task :push do
    `bl_www_sync akero coverage`
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
akero-1.0.3 Rakefile
akero-1.0.2 Rakefile
akero-1.0.1 Rakefile
akero-1.0.0 Rakefile