Module: Vagrant::Util::LineEndingHelpers
- Defined in:
- lib/vagrant/util/line_ending_helpers.rb
Instance Method Summary (collapse)
-
- (String) dos_to_unix(string)
Converts line endings to unix-style line endings in the given string.
Instance Method Details
- (String) dos_to_unix(string)
Converts line endings to unix-style line endings in the given string.
9 10 11 |
# File 'lib/vagrant/util/line_ending_helpers.rb', line 9 def dos_to_unix(string) string.gsub("\r\n", "\n") end |