Method: Codelog::Output::ReleaseFile#print
- Defined in:
- lib/codelog/output/release_file.rb
#print(content) ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/codelog/output/release_file.rb', line 12 def print(content) Dir.chdir Dir.pwd do File.open(@file_path, 'a') do |line| line.puts content end end end |