Skip to content

Commit a7b7d3c

Browse files
committed
Add default rake task for running specs and linter
1 parent c38112b commit a7b7d3c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Rakefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require 'rspec/core/rake_task'
2+
require 'rubocop/rake_task'
3+
4+
RSpec::Core::RakeTask.new(:spec)
5+
RuboCop::RakeTask.new
6+
7+
task default: %i[rubocop spec]

0 commit comments

Comments
 (0)