Sha256: 0d77207b139f2ca6725a7a5731d131ac2971728f58a1ed7b08eeb055394d6b88

Contents?: true

Size: 514 Bytes

Versions: 2

Compression:

Stored size: 514 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'yard'

# Rspec
RSpec::Core::RakeTask.new(:spec)
#task default: :spec

# Yard
YARD::Rake::YardocTask.new do |t|
  t.files   = ['lib/**/*.rb']
  t.options = ['--no-cache', '--protected', '--private']
  t.stats_options = ['--list-undoc']
end

# Load our custom rake tasks.
Gem.find_files('tasks/**/*.rake').each { |path| import path }

require 'rubocop/rake_task'
RuboCop::RakeTask.new

task default: %i[spec rubocop]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_command_dispatcher-3.0.4 Rakefile
simple_command_dispatcher-3.0.3 Rakefile