vijendra/exotel

View on GitHub
lib/exotel/config.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Exotel
  class << self
    attr_accessor :exotel_sid, :exotel_token
    
    def configure
      yield self
    end
  end  
  
  class AuthenticationError < StandardError;  end

  class UnexpectedError < StandardError;  end

  class ParamsError < StandardError;  end
end