appirits/comable

View on GitHub
core/lib/comable/payment_provider/general.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Comable
  module PaymentProvider
    class General < Base
      class << self
        def display_name
          '汎用決済モジュール'
        end

        def kind
          { none: 'なし' }
        end
      end
    end
  end
end