Class: PinkShirt::SAX::BoilerPlate
- Inherits:
-
Base
- Object
- Base
- PinkShirt::SAX::BoilerPlate
show all
- Defined in:
- lib/pink_shirt/sax/boiler_plate.rb
Constant Summary
collapse
- TAGS =
%w(html body head)
Instance Method Summary
collapse
Methods inherited from Base
#add_attributes, #initialize, #method_missing, #to_s
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class PinkShirt::SAX::Base
Instance Method Details
#end_body ⇒ Object
8
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 8
def end_body; end
|
#end_head ⇒ Object
10
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 10
def end_head; end
|
#end_html ⇒ Object
6
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 6
def end_html; end
|
#start_body(attrs) ⇒ Object
7
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 7
def start_body(attrs); end
|
#start_head(attrs) ⇒ Object
9
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 9
def start_head(attrs); end
|
#start_html(attrs) ⇒ Object
5
|
# File 'lib/pink_shirt/sax/boiler_plate.rb', line 5
def start_html(attrs); end
|