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
3 4 5 6 7 8 9 |
# File 'lib/cucumber/core_ext/string.rb', line 3 def indent(n) if n >= 0 gsub(/^/, ' ' * n) else gsub(/^ {0,#{-n}}/, '') end end |