diff options
author | Alex Young <alex@bytemark.co.uk> | 2015-03-31 11:28:12 +0100 |
---|---|---|
committer | Alex Young <alex@bytemark.co.uk> | 2015-03-31 11:28:12 +0100 |
commit | 102f466ab08c3f4759976c449a541c617a161c10 (patch) | |
tree | 85777e5fc962bd0939272cce00341e2111bbdc6a /Rakefile | |
parent | 14481fcfb1a03c702bf044660d4034279a6ec0c1 (diff) |
Add a 'rake console' task
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..9a0e481 --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +task :console do + $:.push("lib") + require 'irb' + require 'irb/completion' + require 'mauve/server' + ARGV.clear + IRB.start +end |