Sha256: 6f430f0c3150fa83f67c62842cbc2f0afd4dd45425693049494b5af9f4a7bbd4

Contents?: true

Size: 480 Bytes

Versions: 6

Compression:

Stored size: 480 Bytes

Contents

# Libs/Gems or Ruby classes
require 'json'
require 'curl'
require 'rest_client'

# Overrides
require 'rents/hash'

# Gem files
[:version, :connection, :status, :transaction].each { |lib| require "rents/#{lib}" }

module Rents
  @@app_id = nil
  @@secret_key = nil

  def self.app_id=(app_id)
    @@app_id = app_id
  end

  def self.app_id
    @@app_id
  end

  def self.secret_key=(secret_key)
    @@secret_key = secret_key
  end

  def self.secret_key
    @@secret_key
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rents-0.1.8 lib/rents.rb
rents-0.1.7 lib/rents.rb
rents-0.1.6 lib/rents.rb
rents-0.1.5 lib/rents.rb
rents-0.1.4 lib/rents.rb
rents-0.1.3 lib/rents.rb