I'm using InstantRails, as described in the Patrick Lenz book (which
is very good, BTW). He shows Rails' log files with underlining, boldface,
etc. I can only see the raw markup language, for example,
#[4;35;1mSQL (0.000000)#[0m #[0mROLLBACK#[0m
What markup language is this, and what Windows program should I use
to view it? (In Lenz's book, it's apparently in a bash window).
That should be ANSI. You should be able to turn it off in the Rails::Initializer.run do |config| block inside config/environment.rb:
config.active_record.colorize_logging = false
Bookmarks