Module: Jstdutil::ColorfulHtml::Color
- Defined in:
- lib/jstdutil/colorful_html.rb
Class Method Summary collapse
Class Method Details
.color(color) ⇒ Object
10 11 12 |
# File 'lib/jstdutil/colorful_html.rb', line 10 def self.color(color) "<span class='#{color}'>" end |
.method_missing(color_name, *args) ⇒ Object
6 7 8 |
# File 'lib/jstdutil/colorful_html.rb', line 6 def self.method_missing(color_name, *args) color(color_name) + args.first + "</span>" end |