Sha256: d8c415ed031630f495808b605a36c2659129607c99811d69cb036105f631dbbc
Contents?: true
Size: 527 Bytes
Versions: 17
Compression:
Stored size: 527 Bytes
Contents
# frozen_string_literal: true require "solidus_core" require "solidus_support" module SolidusInter class Engine < Rails::Engine include SolidusSupport::EngineExtensions isolate_namespace SolidusInter engine_name "solidus_inter" initializer "solidus_inter.add_payment_method", after: "spree.register.payment_methods" do |app| app.config.spree.payment_methods << "SolidusInter::InterPix" end # use rspec for tests config.generators do |g| g.test_framework :rspec end end end
Version data entries
17 entries across 17 versions & 1 rubygems