require_relative '__base__' module Eucalypt class CLI < Thor using Colorize desc "console", "Interactive console with all files loaded".colorize(:grey) def console directory = File.expand_path('.') if Eucalypt.app? directory exec 'bundle exec irb -r ./app.rb' else Eucalypt::Error.wrong_directory end end end end