# File lib/termtter/system_extensions.rb, line 161 def open_brawseropen_brawser(url) case RUBY_PLATFORM when /linux/ system 'firefox', url when /mswin(?!ce)|mingw|bccwin/ system 'explorer', url else system 'open', url end end