Advertisement
Guest User

Untitled

a guest
May 25th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. require_relative 'deps'
  2.  
  3. module ImagingUtils
  4. class Formatter
  5.  
  6. def to_upcase(file_to_format)
  7. @strings = File.open("#{file_to_format}.txt")
  8. File.open("#{file_to_format}-upcase.txt", 'w') do |strings|
  9. @strings.each do |line|
  10. strings.write line.upcase
  11. end
  12.  
  13. end
  14. end
  15. end
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement