rails-recurly-subscription-saas icon indicating copy to clipboard operation
rails-recurly-subscription-saas copied to clipboard

An example Rails 3.2 app with recurring billing using Recurly for a membership or subscription site.

Results 9 rails-recurly-subscription-saas issues
Sort by recently updated
recently updated
newest added

Remove duplication on User model Add a new service to handle the Recurly stuffs Refactor User model spec to use Factory Girl

Now all tests pass. Fixes issue #14; contains no Gemfile changes. These source changes flow into gem rails_apps_composer approximately [here](https://github.com/RailsApps/rails_apps_composer/blob/c99c817e0cdfb5d0fd81807bb39cc9fc816c6767/recipes/saas.rb#L197) only.

baseURL now requires subdomain in two locations. http://docs.recurly.com/api/recurlyjs/jsonp_endpoints.html#create_subscription I'm unsure if the changes to the coupon section matter, but I noticed they were different in docs so I updated it...

On page 40 in the documentation there is a sneaky error in that an extra space is added to (especially) the private key which throws the signature off. Which in...

Apparently Recurly has [changed](https://docs.recurly.com/changelog) (further differentiated) some error messages. So, this has broken two of our tests. But the tests pass when (in [sign_up_with_recurly.feature](https://github.com/RailsApps/rails-recurly-subscription-saas/blob/7cd8602d63f6d97f1aed91accb277b4d22594cad/features/users/sign_up_with_recurly.feature)) the strings respectively in lines [56](https://github.com/RailsApps/rails-recurly-subscription-saas/blob/7cd8602d63f6d97f1aed91accb277b4d22594cad/features/users/sign_up_with_recurly.feature#L56)...

Googling "[mock Recurly](https://www.google.com/search?q=mock+Recurly)" reveals software which can mock out the actual invocation of Recurly for testing purposes. In order to test the example app itself with CI or other purposes,...

Why aren't we using the faster and more normal [capybara-webkit](https://github.com/jnicklas/capybara#capybara-webkit) instead of Selenium? I presume (with either) we would be testing Javascript code. A similar [issue](https://github.com/RailsApps/rails-prelaunch-signup/issues/39) exists for Rails Example...

I think it would be useful to know how to edit the error messages that Recurly sends you using this custom Recurly.js.

I am trying to build a form that is dynamic in that a user could change the plan they wanted in the same form. If they choose the wrong one,...