We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd4a5c commit 209b91eCopy full SHA for 209b91e
1 file changed
Rakefile
@@ -23,6 +23,9 @@ namespace :spec do
23
end
24
25
26
+require 'rubocop/rake_task'
27
+RuboCop::RakeTask.new
28
+
29
require 'rdoc/task'
30
Rake::RDocTask.new do |rdoc|
31
version = File.exist?('VERSION') ? File.read('VERSION') : ""
@@ -33,7 +36,7 @@ Rake::RDocTask.new do |rdoc|
33
36
rdoc.rdoc_files.include('lib/**/*.rb')
34
37
35
38
-task :default => :spec
39
+task :default => [:spec, :rubocop]
40
41
task :fix_permissions do
42
File.umask 0022
0 commit comments