Skip to content

Commit

Permalink
added Mailgun::Error and required it in lib/mailgun.rb
Browse files Browse the repository at this point in the history
Signed-off-by: Akash Manohar J <akash@akash.im>
  • Loading branch information
HashNuke committed Nov 18, 2011
1 parent 590e296 commit 8a4a9f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/mailgun.rb
@@ -1,8 +1,9 @@
require "rest-client"
require "json"

require 'mailgun/base'
require 'mailgun/mailbox'
require "mailgun/mailgun_error"
require "mailgun/base"
require "mailgun/mailbox"

def Mailgun(options)
Mailgun::Base.new(options)
Expand Down
4 changes: 4 additions & 0 deletions lib/mailgun/mailgun_error.rb
@@ -0,0 +1,4 @@
module Mailgun
class Error < StandardError
end
end

0 comments on commit 8a4a9f1

Please sign in to comment.