Sha256: 78eb37bdb2c89c81ab28f4db90b3ff37c1d17e0a3c7caab82a0f46e691c3f342
Contents?: true
Size: 423 Bytes
Versions: 5
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true module SolidusMelhorEnvio class Configuration # Define here the settings for this extension, e.g.: # # attr_accessor :my_setting attr_accessor :app_name, :services, :postal_code_from end class << self def configuration @configuration ||= Configuration.new end alias config configuration def configure yield configuration end end end
Version data entries
5 entries across 5 versions & 1 rubygems