class Nucleo::Models::ChangeTypes::Seo::Base

Constants

VALID_ACTIONS
VALID_SELECTORS

Public Instance Methods

action() click to toggle source

Returns the action

@return [String]

# File lib/nucleo/models/change_types/seo/base.rb, line 14
def action
  rule['action']
end
content() click to toggle source

Returns the content to insert/replace

@return [String]

# File lib/nucleo/models/change_types/seo/base.rb, line 21
def content
  rule['content']
end
selector() click to toggle source

Returns the selector

@return [String]

# File lib/nucleo/models/change_types/seo/base.rb, line 28
def selector
  rule['selector']
end
selector_content() click to toggle source

Returns a string value that uniquely identifies and item by the `selector` provided.

@return [String]

# File lib/nucleo/models/change_types/seo/base.rb, line 36
def selector_content
  rule['selector_content']
end