Sha256: 0bccc165a7dae04a5997aa259af13ec1cd3bb68fe04702aa213be41f5539847c
Contents?: true
Size: 371 Bytes
Versions: 18
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true module LedgerSync module Ledgers module TestLedger class Client include Ledgers::Client::Mixin attr_reader :api_key def initialize(args = {}) @api_key = args.fetch(:api_key) end def self.ledger_attributes_to_save %i[api_key] end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems