mirror of
https://github.com/kemko/liquid.git
synced 2026-01-10 12:05:46 +03:00
* Enabled frozen string literals * Update rubocop config * Prefer string interpolation in simple cases Co-Authored-By: Dylan Thacker-Smith <dylan.smith@shopify.com>
9 lines
107 B
Ruby
9 lines
107 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Liquid
|
|
module Usage
|
|
def self.increment(name)
|
|
end
|
|
end
|
|
end
|