rebay icon indicating copy to clipboard operation
rebay copied to clipboard

Sandbox URLs are not inherited in Rails 4.2

Open armchairdj opened this issue 8 years ago • 0 comments

When configuring Rebay::Api in an initializer in a Rails 4.2 app, the sandbox boolean is not inherited by Rebay::Finding or Rebay::Shopping.

Workaround:

Rebay::Api.configure do |rebay| rebay.app_id = "whatever" rebay.sandbox = true end

Rebay::Finding.configure do |rebay| rebay.sandbox = true end

Rebay::Shopping.configure do |rebay| rebay.sandbox = true end

armchairdj avatar Oct 11 '16 00:10 armchairdj