class Array

Public Instance Methods

has_the_template?(arg) click to toggle source
# File lib/sinatra/core_ext/array.rb, line 2
def has_the_template?(arg)
  self.select { |x| x.check arg }.any?
end