Sha256: a50b4b63ce3b1c1e235226de842e455797ca6a6704633e1cec21446cb84b8da9

Contents?: true

Size: 290 Bytes

Versions: 3

Compression:

Stored size: 290 Bytes

Contents

# frozen_string_literal: true

module BuddyTranslatable
  class Configuration
    attr_accessor :available_sales_keys, :current_sales_key

    def initialize
      @available_sales_keys = %i[vev ebay]
    end

    def reset_current_sales_key
      @current_sales_key = nil
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buddy_translatable-0.1.2 lib/buddy_translatable/configuration.rb
buddy_translatable-0.1.1 lib/buddy_translatable/configuration.rb
buddy_translatable-0.1.0 lib/buddy_translatable/configuration.rb