and with a `rails neopets:import` task you can call to do them all at once! I'm gonna do some other stuff here too to make `neopets:import` easier to call all in one go, like prompting for the Neologin cookie just once at the start. Note that this changes the cron setup, so you gotta run `bin/deploy:setup` after this deploys!
7 lines
144 B
Ruby
7 lines
144 B
Ruby
namespace :neopets do
|
|
task :import => [
|
|
"neopets:import:nc_mall",
|
|
"neopets:import:rainbow_pool",
|
|
"neopets:import:styling_studio",
|
|
]
|
|
end
|