https://github.com/mperham/sidekiq
Raw File
Tip revision: 148b2603f52fff8e91b4a3399572e7385951c6c5 authored by Lutz Lengemann on 26 October 2022, 16:45:08 UTC
Fix natural sorting for processes (#5587)
Tip revision: 148b260
Rakefile
require "bundler/gem_tasks"
require "rake/testtask"
require "standard/rake"

# If you want to generate API docs:
#   gem install yard && yard && open doc/index.html
# YARD readme: https://rubydoc.info/gems/yard/file/README.md
# YARD tags: https://www.rubydoc.info/gems/yard/file/docs/Tags.md
# YARD cheatsheet: https://gist.github.com/phansch/db18a595d2f5f1ef16646af72fe1fb0e

# To check code coverage, include simplecov in the Gemfile and
# run `COVERAGE=1 bundle exec rake`

Rake::TestTask.new(:test) do |test|
  test.warning = true
  test.pattern = "test/**/*.rb"
end

task default: [:standard, :test]
back to top