lib/core/facets/file/append.rb in facets-2.4.5 vs lib/core/facets/file/append.rb in facets-2.5.0
- old
+ new
@@ -1,9 +1,9 @@
class File
# Append to a file.
#
- # CREDIT: George Moschovitis
+ # CREDIT: George Moschovitis
def self.append( file, str )
File.open( file, 'ab' ) { |f|
f << str
}