├── .gitignore ├── README.md ├── actions └── tumblr │ └── index.js ├── app.js ├── artimate.png ├── artimate_logo.svg ├── artimate_logo_white.png ├── config.json ├── coverage.png ├── engagers └── EngageTumblr.js ├── logs └── tumblr │ ├── engaged.json │ └── qs │ └── empty.json ├── package.json ├── test ├── EngageTumblr-test.js ├── boot.js └── tumblr-test.js └── utils └── oauth_tumblr.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.log* 2 | /node_modules 3 | /coverage 4 | dump.rdb 5 | .DS_STORE 6 | config-real.json 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/README.md -------------------------------------------------------------------------------- /actions/tumblr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/actions/tumblr/index.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/app.js -------------------------------------------------------------------------------- /artimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/artimate.png -------------------------------------------------------------------------------- /artimate_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/artimate_logo.svg -------------------------------------------------------------------------------- /artimate_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/artimate_logo_white.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/config.json -------------------------------------------------------------------------------- /coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/coverage.png -------------------------------------------------------------------------------- /engagers/EngageTumblr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/engagers/EngageTumblr.js -------------------------------------------------------------------------------- /logs/tumblr/engaged.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /logs/tumblr/qs/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/package.json -------------------------------------------------------------------------------- /test/EngageTumblr-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/test/EngageTumblr-test.js -------------------------------------------------------------------------------- /test/boot.js: -------------------------------------------------------------------------------- 1 | require('should'); 2 | -------------------------------------------------------------------------------- /test/tumblr-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/test/tumblr-test.js -------------------------------------------------------------------------------- /utils/oauth_tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannynotfound/artimate/HEAD/utils/oauth_tumblr.py --------------------------------------------------------------------------------