module Vue::Helpers

Debug = []

Constants

MethodsBlock

This block of methods is used as refinements in Ruby >= 2.4, and is used as a regular module methods (private) in Ruby < 2.4. This is done to accommodate a wider range of Ruby versions, since Ruby < 2.4 doesn't allow refining of Modules. See if-then block below.

VERSION

Attributes

defaults[RW]

Public Class Methods

included(other) click to toggle source
# File lib/vue/helpers.rb, line 41
def self.included(other)
  other.send(:include, Vue::Helpers::Methods)
end