Sha256: 288a4dac7a509ede6db6f7472a3ff288eb70bdf7ae377d7af7df980d54955b7d
Contents?: true
Size: 351 Bytes
Versions: 15
Compression:
Stored size: 351 Bytes
Contents
#!/usr/bin/env ruby link = File.expand_path(File.dirname(__FILE__)+"/../doc/index.html") if RUBY_PLATFORM =~ /mswin|mingw|cygwin/ system "start #{link}" elsif RUBY_PLATFORM =~ /darwin/ system "open #{link}" elsif RUBY_PLATFORM =~ /linux|bsd/ system "xdg-open #{link}" else puts "Please open #{link} manually in your browser." end
Version data entries
15 entries across 15 versions & 1 rubygems