Class: FeedTools::TextInput
- Inherits:
-
Object
- Object
- FeedTools::TextInput
- Defined in:
- lib/feed_tools/feed_structures.rb
Overview
Represents a feed’s text input element. Be aware that this will be ignored for feed generation. It’s a pointless element that aggregators usually ignore and it doesn’t have an equivalent in all feeds types.
Instance Attribute Summary collapse
-
#description ⇒ Object
The description explains the text input area.
-
#link ⇒ Object
The URL of the CGI script that processes text input requests.
-
#name ⇒ Object
The name of the text object in the text input area.
-
#title ⇒ Object
The label of the Submit button in the text input area.
Instance Attribute Details
#description ⇒ Object
The description explains the text input area.
90 91 92 |
# File 'lib/feed_tools/feed_structures.rb', line 90 def description @description end |
#link ⇒ Object
The URL of the CGI script that processes text input requests.
92 93 94 |
# File 'lib/feed_tools/feed_structures.rb', line 92 def link @link end |
#name ⇒ Object
The name of the text object in the text input area.
94 95 96 |
# File 'lib/feed_tools/feed_structures.rb', line 94 def name @name end |
#title ⇒ Object
The label of the Submit button in the text input area.
88 89 90 |
# File 'lib/feed_tools/feed_structures.rb', line 88 def title @title end |