Sha256: 8c5982a2ebcc2d1e20a80ab694a678cdf619afc1286e147e9acfaf5f4cda1b19

Contents?: true

Size: 420 Bytes

Versions: 5

Compression:

Stored size: 420 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'

RuboCop::RakeTask.new

Rake::TestTask.new do |t|
  t.verbose = true
  t.warning = false
  t.pattern = File.join('test', '**', 'test_*.rb')
end

namespace :test do
  task :coverage do
    ENV['COVERAGE'] = 'true'
    Rake::Task['test'].invoke
  end
end

task(:doc_stats) { ruby '-S yard stats' }
task default: [:test, :doc_stats, :rubocop]

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kraken_client-1.1.5 Rakefile
kraken_client-1.1.4 Rakefile
kraken_client-1.1.3 Rakefile
kraken_client-1.1.2 Rakefile
kraken_client-1.1.1 Rakefile