Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/engine_of_war/extensions/string.rb
Instance Method Summary collapse
Instance Method Details
#uncomment(comment = "//") ⇒ Object
6 7 8 |
# File 'lib/engine_of_war/extensions/string.rb', line 6 def uncomment(comment = "//") gsub(%r{^#{comment}\s*}, '') end |
#unindent ⇒ Object
2 3 4 |
# File 'lib/engine_of_war/extensions/string.rb', line 2 def unindent gsub /^#{self[/\A\s*/]}/, '' end |