module Crystalize::Check::Meta
Public Instance Methods
check_metaprogramming_methods(line)
click to toggle source
# File lib/crystalize/check/lines/meta.rb, line 8 def check_metaprogramming_methods(line) methods = [] methods.each do |method| end end
include_method?(line, method)
click to toggle source
# File lib/crystalize/check/lines/meta.rb, line 4 def include_method?(line, method) line.match /[ .(]?#{method}[ .)(]?/ end