blob: 8833fe255aa3e3b26f4f881df1c911455003b17e [file] [log] [blame]
{
"name": "DWURunLoopWorkDistribution",
"version": "1.0.0",
"summary": "iOS Fast Scrolling with RunLoop Work Distribution",
"description": "* Go to work when UI thread gets idle. Step aside when UI thread gets busy.\n* If deployed properly, it could:\n*** Delay heavy tasks on the UI thread as late as possible.\n*** Preload heavy tasks as soon as the UI thread enters its idling mode.\n*** Allow you to distribute a heavy task as multiple smaller tasks, thus less blocking when UI thread suddenly gets busy again.\n* 100% thread safe. Always runs on the UI thread.",
"homepage": "https://github.com/diwu/RunLoopWorkDistribution",
"license": "MIT",
"authors": {
"Di Wu": "diwup@foxmail.com"
},
"source": {
"git": "https://github.com/diwu/RunLoopWorkDistribution.git",
"tag": "1.0.0"
},
"platforms": {
"ios": "6.0"
},
"requires_arc": true,
"source_files": "RunLoopWorkDistribution/DWURunLoopWorkDistribution/*.{h,m}"
}