Method: Build::Text::Substitutions::NestedSubstitution.apply
- Defined in:
- lib/build/text/substitutions.rb
.apply(text, group) ⇒ Object
190 191 192 193 194 195 196 |
# File 'lib/build/text/substitutions.rb', line 190 def self.apply(text, group) group.each do |substitution| text = substitution.apply(text) end return text end |