Sha256: d41df59c9a7824c9112b2fbb4eeaa078544da61c554f120c8c087f1587b9edfa

Contents?: true

Size: 523 Bytes

Versions: 2

Compression:

Stored size: 523 Bytes

Contents

require "firebrew/version"
require 'rake/pathmap'

module Firebrew
  class Error < StandardError; def status; 1 end end
  class ProfilesFileNotFoundError < Error; end
  class ProfileNotFoundError < Error; end
  class ExtensionNotFoundError < Error; end
  class FirefoxCommandError < Error; end
  class CommandLineError < Error; end
  class NetworkError < Error; end
  class OperationAlreadyCompletedError < Error; def status; 2 end end
end

Dir[__FILE__.pathmap('%X/*.rb')].each do |rb|
  require rb.pathmap('%-1d/%n')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
firebrew-0.3.0 lib/firebrew.rb
firebrew-0.2.0 lib/firebrew.rb