module TicketSharing

Constants

JSON_PARSER

Public Class Methods

connection() click to toggle source
# File lib/ticket_sharing.rb, line 2
def self.connection
  @connection ||= Faraday.new
end
connection=(new_connection) click to toggle source
# File lib/ticket_sharing.rb, line 6
def self.connection=(new_connection)
  @connection = new_connection
end