Class: Haml2Erb::Tokens::InnerAttributeRuby
- Defined in:
- lib/haml2erb/tokens.rb
Instance Attribute Summary
Attributes inherited from Token
Class Method Summary collapse
Methods inherited from Token
Constructor Details
This class inherits a constructor from Haml2Erb::Tokens::Token
Class Method Details
.match(text) ⇒ Object
96 97 98 99 |
# File 'lib/haml2erb/tokens.rb', line 96 def self.match(text) match_data = @regex.match(text) match_data ? self.new(match_data.to_s, :element_attribute => { match_data[1] => "<%= #{match_data[4]} %>" }) : nil end |