Sha256: 1a035c2d2725f82d82ce520c3a2c7c5316577c5d78edf471760b36c8d820b584

Contents?: true

Size: 404 Bytes

Versions: 4

Compression:

Stored size: 404 Bytes

Contents

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 }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
simple_command_dispatcher-1.2.3 Rakefile
simple_command_dispatcher-1.2.2 Rakefile
simple_command_dispatcher-1.2.1 Rakefile
simple_command_dispatcher-1.1.1 Rakefile