Rakefile in totem-0.0.1 vs Rakefile in totem-0.0.3

- old
+ new

@@ -1,13 +1,10 @@ require 'bundler/gem_tasks' -desc 'Start an IRB console with Workers loaded' +desc 'Start a Totem interactive console' task :console do $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib')) require 'totem' - require 'irb' - ARGV.clear - - IRB.start + Totem::Shell.new([:console]).run end