paypal_done.rb
1# frozen_string_literal: true
2
3class PaypalDone
4 MESSAGE =
5 "\n\nPayPal users must now go to https://www.paypal.com/myaccount/autopay/ " \
6 "and cancel their PayPal subscription to JMP. Then contact support and " \
7 "provide them with your PayPal email address."
8
9 def initialize(*); end
10
11 def write
12 Command.finish(MESSAGE)
13 end
14end