Class: BestBuy::Conditions::NewCondition
- Inherits:
-
Object
- Object
- BestBuy::Conditions::NewCondition
- Defined in:
- lib/best_buy/helpers/conditions/new_condition.rb
Instance Method Summary collapse
-
#initialize(condition_hash) ⇒ NewCondition
constructor
A new instance of NewCondition.
- #search_query ⇒ Object
- #valid? ⇒ Boolean
Constructor Details
#initialize(condition_hash) ⇒ NewCondition
Returns a new instance of NewCondition.
6 7 8 |
# File 'lib/best_buy/helpers/conditions/new_condition.rb', line 6 def initialize(condition_hash) @item_condition = condition_hash[:item_condition]&.downcase end |
Instance Method Details
#search_query ⇒ Object
14 15 16 |
# File 'lib/best_buy/helpers/conditions/new_condition.rb', line 14 def search_query '(condition=new|new=true)' end |
#valid? ⇒ Boolean
10 11 12 |
# File 'lib/best_buy/helpers/conditions/new_condition.rb', line 10 def valid? @item_condition.present? && @item_condition == 'new' end |