Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/cucumber/core_ext/string.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#indent(n) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/cucumber/core_ext/string.rb', line 4 def indent(n) if n >= 0 gsub(/^/, ' ' * n) else gsub(/^ {0,#{-n}}/, '') end end |