Refining previous email about payment gateways

Hi Looking for a payment gateway that is easy to set up in Rails. The idea is that as part of the Registration Process a user pay money to gain access to restricted pages.

I will at Stripe https://stripe.com/nz but if any one can suggest a simpler one feel free to do so.

Cheers Dave

In my experience, Stripe is the easiest. Particularly for recurring (subscription) payment. There's a great example app at the RailsApps site: GitHub - RailsApps/rails-stripe-membership-saas: An example Rails 4.2 app with Stripe and the Payola gem for a membership or subscription site. if you want to do recurring billing. For single payment, it's even simpler than that.

Walter

Thanks walter