I found a very simple approach to this - use gist for input. You copy and paste your data into gist, and then pass the link to the source text as a parameter for your task. Then, in the rake task, you open the remote file.
For example, if you upload a yaml file:
YAML.parse(open(file_name)).to_ruby.with_indifferent_access
Drewb
source share