Sha256: 7eeb9e915a3d0132082fcacc0175684a11fda456701b7f8301198c65400f271a

Contents?: true

Size: 621 Bytes

Versions: 3

Compression:

Stored size: 621 Bytes

Contents

# frozen_string_literal: true

require "bundler/setup"

APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
load "rails/tasks/engine.rake"

load "rails/tasks/statistics.rake"

require "bundler/gem_tasks"
require "rspec/core/rake_task"
require "rubocop/rake_task"

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new

namespace :yard do
  desc "Start YARD server"
  task :server do
    puts "See http://localhost:8808/"
    sh "yard server --reload"
  end

  desc "Check YARD docs"
  task :check do
    sh "yard --no-output --no-cache --fail-on-warning"
  end
end

task default: %i[rubocop spec yard:check]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tanshuku-0.0.17 Rakefile
tanshuku-0.0.16 Rakefile
tanshuku-0.0.15 Rakefile