rebay
rebay copied to clipboard
Sandbox URLs are not inherited in Rails 4.2
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