Sha256: a1d13eba241d8710f8ccf0e91a92ea60a67f033b2f34204c87a57fd66dd848cd
Contents?: true
Size: 394 Bytes
Versions: 3
Compression:
Stored size: 394 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" require "rake/testtask" require "rubocop/rake_task" RuboCop::RakeTask.new(:rubocop) do |t| t.options << "--config" t.options << File.expand_path(".rubocop.yml", __dir__) end Rake::TestTask.new(:test) do |t| t.libs << "test" t.test_files = FileList["test/**/*_test.rb"] t.warning = false end task default: %i[test rubocop]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
validators-3.4.2 | Rakefile |
validators-3.4.1 | Rakefile |
validators-3.4.0 | Rakefile |