From f0afc701e5640c7f364c7ae49b7db17214672a46 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 23 Oct 2018 18:56:01 -0700 Subject: Add standard rake tasks Signed-off-by: Tim Smith --- Rakefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index c702cfc..c71976d 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,15 @@ require 'bundler/gem_tasks' + +begin + require "yard" + YARD::Rake::YardocTask.new(:docs) +rescue LoadError + puts "yard is not available. bundle install first to make sure all dependencies are installed." +end + +task :console do + require "irb" + require "irb/completion" + ARGV.clear + IRB.start +end -- cgit v1.2.1