lib/firebrew.rb in firebrew-0.1.0 vs lib/firebrew.rb in firebrew-0.1.1

- old
+ new

@@ -2,14 +2,13 @@ module Firebrew class Error < StandardError; def status; 1 end end class ProfilesFileNotFoundError < Error; def status; 2 end end class ProfileNotFoundError < Error; def status; 3 end end - class ExtensionsFileNotFoundError < Error; def status; 4 end end - class ExtensionNotFoundError < Error; def status; 5 end end - class FirefoxCommandError < Error; def status; 6 end end - class CommandLineError < Error; def status; 7 end end - class OperationAlreadyCompletedError < Error; def status; 8 end end + class ExtensionNotFoundError < Error; def status; 4 end end + class FirefoxCommandError < Error; def status; 5 end end + class CommandLineError < Error; def status; 6 end end + class OperationAlreadyCompletedError < Error; def status; 7 end end end require 'firebrew/entity' require 'firebrew/amo_api/search' require 'firebrew/firefox/profile'