Skip to content

Instantly share code, notes, and snippets.

@ccarruitero
Created January 6, 2022 22:41
Show Gist options
  • Save ccarruitero/2716ae69210f10989b6316f49ddcdbae to your computer and use it in GitHub Desktop.
Save ccarruitero/2716ae69210f10989b6316f49ddcdbae to your computer and use it in GitHub Desktop.
class MyCustomEstimator < SolidusEasypost::Estimator
def shipping_rates(package, frontend_only = true)
# your custom logic
end
end
# config/initializers/spree.rb
Spree.config do |config|
config.stock.estimator_class = 'MyCustomEstimator'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment