1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-09-08 03:45:51 +03:00

Add Rails webhook engine, docs, and dependency refresh

Этот коммит содержится в:
Gleb Tv
2026-03-02 18:16:57 +03:00
родитель 85e97dc70c
Коммит 8f13fe4748
19 изменённых файлов: 999 добавлений и 121 удалений

Просмотреть файл

@@ -7,6 +7,7 @@ require "yookassa/config"
require "yookassa/payments"
require "yookassa/refunds"
require "yookassa/receipts"
require "yookassa/webhooks"
module Yookassa
class << self
@@ -31,5 +32,11 @@ module Yookassa
def receipts
@receipts ||= Receipts.new
end
def webhooks
@webhooks ||= Webhooks.new
end
end
end
require "yookassa/railtie" if defined?(Rails::Railtie)