Class: Dugway::Drops::ShippingOptionDrop

Inherits:
BaseDrop
  • Object
show all
Defined in:
lib/dugway/liquid/drops/shipping_option_drop.rb

Instance Attribute Summary

Attributes inherited from BaseDrop

#params, #request, #source

Instance Method Summary collapse

Methods inherited from BaseDrop

#before_method, #cart, #context=, #error, #errors, #initialize, #method_missing, #store, #theme

Constructor Details

This class inherits a constructor from Dugway::Drops::BaseDrop

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Dugway::Drops::BaseDrop

Instance Method Details

#countryObject



4
5
6
# File 'lib/dugway/liquid/drops/shipping_option_drop.rb', line 4

def country
  @country ||= CountryDrop.new(source['country'])
end

#strictObject

internal



10
11
12
# File 'lib/dugway/liquid/drops/shipping_option_drop.rb', line 10

def strict
  @strict ||= product.shipping.size > 1 || product.shipping.first.country.name.present?
end