blob: bcc393a267ed4d0bef3cbc0372829cf9ce0919d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Oxidized
# Used in models, contains convenience methods
class String < String
# @return [Oxidized::String] copy of self with last line removed
def cut_tail
Oxy::String.new each_line.to_a[0..-2].join
end
# @return [Oxidized::String] copy of self with first line removed
def cut_head
Oxy::String.new each_line.to_a[1..-1].join
end
end
end
|