Files
liquid/lib/liquid/usage.rb
Mike Angell 0d26f05bb8 Enabled frozen string literals (#1154)
* Enabled frozen string literals

* Update rubocop config

* Prefer string interpolation in simple cases

Co-Authored-By: Dylan Thacker-Smith <dylan.smith@shopify.com>
2019-09-18 13:19:45 +10:00

9 lines
107 B
Ruby

# frozen_string_literal: true
module Liquid
module Usage
def self.increment(name)
end
end
end