File: crlf.rb

package info (click to toggle)
ruby-ftw 0.0.49-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 548 kB
  • sloc: ruby: 1,922; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
require "ftw/namespace"

# This module provides a 'CRLF' constant for use with protocols that need it.
# I find it easier to specify CRLF instead of literal "\r\n"
module FTW::CRLF
  # carriage-return + line-feed
  CRLF = "\r\n"
end # module FTW::CRLF