Sha256: a8f291d7841ab2d9cba827ca03b773ca61b921f95f8aa4f5d091843f6584dfbd
Contents?: true
Size: 593 Bytes
Versions: 1
Compression:
Stored size: 593 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 "Generate YARD docs" task :generate do sh "yard --output-dir docs" end end task default: %i[rubocop spec]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tanshuku-0.0.14 | Rakefile |