summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorWild Kat <wk@futureinquestion.net>2018-04-11 18:03:04 +0200
committerWild Kat <wk@futureinquestion.net>2018-04-11 18:39:17 +0200
commit9850a6b6107685c6cfc95f0411a5e61e0955bf85 (patch)
tree364c7bc80d8ac7f423de2efdd06ff460b8334929 /Rakefile
parent0f8975cf5e77e1757bb77cf694d4a0876729a0af (diff)
introduce rubocop and bump testing ecosystem
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index de6ba82..6f792d5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,6 +4,18 @@ require 'rake/testtask'
gemspec = eval(File.read(Dir['*.gemspec'].first))
file = [gemspec.name, gemspec.version].join('-') + '.gem'
+# Integrate Rubocop if available
+begin
+ require 'rubocop/rake_task'
+
+ RuboCop::RakeTask.new
+ task(:default).prerequisites << task(:rubocop)
+rescue LoadError
+ task :rubocop do
+ puts 'Install rubocop to run its rake tasks'
+ end
+end
+
desc 'Validate gemspec'
task :gemspec do
gemspec.validate