Class: ThemeCheck::ShopifyLiquid::SourceIndex::BaseState
- Inherits:
-
Object
- Object
- ThemeCheck::ShopifyLiquid::SourceIndex::BaseState
show all
- Defined in:
- lib/theme_check/shopify_liquid/source_index/base_state.rb
Class Method Summary
collapse
Class Method Details
.mark_outdated ⇒ Object
8
9
10
|
# File 'lib/theme_check/shopify_liquid/source_index/base_state.rb', line 8
def mark_outdated
@up_to_date = false
end
|
.mark_up_to_date ⇒ Object
12
13
14
|
# File 'lib/theme_check/shopify_liquid/source_index/base_state.rb', line 12
def mark_up_to_date
@up_to_date = true
end
|
.outdated? ⇒ Boolean
16
17
18
|
# File 'lib/theme_check/shopify_liquid/source_index/base_state.rb', line 16
def outdated?
@up_to_date == false
end
|