added console rake task

This commit is contained in:
2010-11-24 13:46:11 +00:00
parent 20280f2c5d
commit 81ee2ec0b6

View File

@@ -55,3 +55,14 @@ rescue LoadError
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
end
end
#
# Misc.
#
desc "Start an irb console with TimeExt pre-loaded."
task :console do
exec "irb -r spec/spec_helper"
end
task :c => :console