Sha256: 3e981de1a4d0aa00a749d12f445089ec70ac85701aeb0db85a224a337444d101
Contents?: true
Size: 325 Bytes
Versions: 6
Compression:
Stored size: 325 Bytes
Contents
require 'launchy' module Rubycritic class Browser attr_reader :report_path def initialize(report_path) @report_path = report_path end def open Launchy.open(report_path) do |exception| puts "Attempted to open #{report_path} and failed because #{exception}" end end end end
Version data entries
6 entries across 6 versions & 1 rubygems