# File lib/puppet-lint/plugins/check_strings.rb, line 114 def check tokens.select { |r| r.type == :SSTRING && r.value.include?('${') }.each do |token| notify :error, { :message => 'single quoted string containing a variable found', :line => token.line, :column => token.column, } end end