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