Sha256: 2bea4160b3801fd07bcfa4bbaba8173e0421b9fd760651b422bf7a20618d5209

Contents?: true

Size: 400 Bytes

Versions: 5

Compression:

Stored size: 400 Bytes

Contents

# frozen_string_literal: true

module ThemeCheck
  module ShopifyLiquid
    class SourceIndex
      class BaseState
        class << self
          def mark_outdated
            @up_to_date = false
          end

          def mark_up_to_date
            @up_to_date = true
          end

          def outdated?
            @up_to_date == false
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
theme-check-1.15.0 lib/theme_check/shopify_liquid/source_index/base_state.rb
theme-check-1.14.0 lib/theme_check/shopify_liquid/source_index/base_state.rb
theme-check-1.13.0 lib/theme_check/shopify_liquid/source_index/base_state.rb
theme-check-1.12.1 lib/theme_check/shopify_liquid/source_index/base_state.rb
theme-check-1.12.0 lib/theme_check/shopify_liquid/source_index/base_state.rb