Codebase list ruby-cms-scanner / upstream/0.0.40 Rakefile
upstream/0.0.40

Tree @upstream/0.0.40 (Download .tar.gz)

Rakefile @upstream/0.0.40raw · history · blame

1
2
3
4
5
6
7
8
9
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

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

# Run rubocop & rspec before the build
task build: %i[rubocop spec]