Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created August 23, 2017 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/5a97a08a6c3b6a329b163232d9aef722 to your computer and use it in GitHub Desktop.
Save marcusshepp/5a97a08a6c3b6a329b163232d9aef722 to your computer and use it in GitHub Desktop.
puts not working in rails project
# puts string was not working, these are a few work arounds
def puts(s)
Rails.logger.info(s)
end
File.open("debug.txt", ""){|f|f.write('foo')}
raise "foo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment