4
votes
5answers
1k views
Rails task: script/runner or rake?
For ad hoc Rails tasks we have a few implementation alternatives, chief among which would seem to be
script/runner some_useful_thing
and
rake some:other_useful_thing
Which option should I …
