lib/pyre.rb in pyre-0.2.0 vs lib/pyre.rb in pyre-0.3.0
- old
+ new
@@ -1,17 +1,24 @@
# Pyre: Because there isn't a real API for Campfire.
module Pyre
# :stopdoc:
- VERSION = '0.2.0'
+ VERSION = '0.3.0'
LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
# :startdoc:
# Returns the version string for the library.
#
def self.version
VERSION
end
+
+ # :stopdoc:
+ class LoginError < StandardError; end
+ class CommunicationError < StandardError; end
+ class UploadError < StandardError; end
+ class NavigationError < StandardError; end
+ # :startdoc:
end
require 'uri'
begin
require 'mechanize'
\ No newline at end of file