Rakefile in chatterbot-0.7.1 vs Rakefile in chatterbot-0.9.0
- old
+ new
@@ -22,5 +22,13 @@
rdoc.main = "README.rdoc"
rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb")
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "'chatterbot #{Chatterbot::VERSION}'"
end
+
+task :console do
+ require 'irb'
+ require 'irb/completion'
+ require 'chatterbot' # You know what to do.
+ ARGV.clear
+ IRB.start
+end