I have a Rails task: should I use script/runner or rake?

后端 未结 8 597
萌比男神i
萌比男神i 2020-12-07 16:08

For ad hoc Rails tasks we have a few implementation alternatives, chief among which would seem to be:

script/runner some_useful_thing
8条回答
  •  悲哀的现实
    2020-12-07 16:48

    I got the impression script/runner was primarily for periodic tasks. E.g., a cron job that runs:

    SomeClass.update_from_web('http://www.sourcefordata.gov/')
    

提交回复
热议问题