Skip to content

Instantly share code, notes, and snippets.

@tamouse
Created July 1, 2013 03:29
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 tamouse/1f73c79b5e4675e498b7 to your computer and use it in GitHub Desktop.
Save tamouse/1f73c79b5e4675e498b7 to your computer and use it in GitHub Desktop.
reading a file from inside a rake task
$ be rake read_file
"---\nstuff: this is some stuff\n and:\n - this\n - is\n - some\n - nonesense\nooerr: Hi, Mate!\n"
---
stuff: this is some stuff
and:
- this
- is
- some
- nonesense
ooerr: Hi, Mate!
desc "read a file inside rake"
task :read_file do |t|
path = File.join(Rails.root,"db","data.yml")
puts File.open(path).read.inspect
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment