Class: Script

Inherits:
HTML::Proofer::Checkable show all
Defined in:
lib/html/proofer/checks/scripts.rb

Instance Method Summary collapse

Methods inherited from HTML::Proofer::Checkable

#absolute_path, #exists?, #external?, #file_path, #hash, #ignore?, #ignores_pattern_check, #initialize, #internal?, #non_http_remote?, #parts, #path, #remote?, #scheme, #unslashed_directory?, #url, #valid?

Constructor Details

This class inherits a constructor from HTML::Proofer::Checkable

Instance Method Details

#blank?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/html/proofer/checks/scripts.rb', line 13

def blank?
  @content.strip.empty?
end

#missing_src?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/html/proofer/checks/scripts.rb', line 9

def missing_src?
  !src
end

#srcObject



5
6
7
# File 'lib/html/proofer/checks/scripts.rb', line 5

def src
  @src unless @src.nil? || @src.empty?
end