Sha256: 07c0b18a2a1a055a7d5ba7d6a9db37323fc4a4db1b915abd7d9c23501232ff86

Contents?: true

Size: 279 Bytes

Versions: 8

Compression:

Stored size: 279 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new do |t|
  t.pattern = 'spec/**/*_spec.rb'
  t.rspec_opts = '--color --format progress'
  t.verbose = false
end

task :all do
  exec('rake spec')
end

task :default => [:all]

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aktion_test-0.3.1 Rakefile
aktion_test-0.3.0 Rakefile
aktion_test-0.2.2 Rakefile
aktion_test-0.2.1 Rakefile
aktion_test-0.2.0 Rakefile
aktion_test-0.1.2 Rakefile
aktion_test-0.1.1 Rakefile
aktion_test-0.1.0 Rakefile