├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── Makefile ├── contributing.md ├── lib └── index.coffee ├── license.md ├── package.json ├── readme.md └── test ├── fixtures ├── alt-content-type-config │ ├── app.coffee │ ├── index.jade │ └── package.json ├── basic │ ├── about.jade │ ├── app.coffee │ ├── index.jade │ └── package.json ├── custom_name │ ├── about.jade │ ├── app.coffee │ ├── index.jade │ └── package.json ├── image_view_helper │ ├── app.coffee │ ├── index.jade │ └── package.json ├── missing_config │ ├── app.coffee │ ├── index.jade │ └── package.json ├── missing_token │ ├── app.coffee │ ├── index.jade │ └── package.json ├── single_entry │ ├── app.coffee │ ├── index.jade │ ├── package.json │ └── views │ │ └── _blog_post.jade ├── single_entry_custom │ ├── app.coffee │ ├── index.jade │ ├── package.json │ └── views │ │ └── _blog_post.jade ├── single_entry_multi │ ├── app.coffee │ ├── index.jade │ ├── package.json │ └── views │ │ └── _blog_post.jade ├── sort │ ├── about.jade │ ├── app.coffee │ ├── index.jade │ ├── package.json │ └── posts_expected.json ├── transform │ ├── about.jade │ ├── app.coffee │ ├── index.jade │ ├── package.json │ └── posts_expected.json └── write │ ├── about.jade │ ├── app.coffee │ ├── index.jade │ └── package.json ├── mocha.opts ├── support └── helpers.js └── test.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | coverage 4 | src 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | src 3 | .travis.yml 4 | Makefile 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/Makefile -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/contributing.md -------------------------------------------------------------------------------- /lib/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/lib/index.coffee -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/alt-content-type-config/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/alt-content-type-config/app.coffee -------------------------------------------------------------------------------- /test/fixtures/alt-content-type-config/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/alt-content-type-config/index.jade -------------------------------------------------------------------------------- /test/fixtures/alt-content-type-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/alt-content-type-config/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/about.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/basic/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/basic/app.coffee -------------------------------------------------------------------------------- /test/fixtures/basic/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/basic/index.jade -------------------------------------------------------------------------------- /test/fixtures/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/basic/package.json -------------------------------------------------------------------------------- /test/fixtures/custom_name/about.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/custom_name/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/custom_name/app.coffee -------------------------------------------------------------------------------- /test/fixtures/custom_name/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/custom_name/index.jade -------------------------------------------------------------------------------- /test/fixtures/custom_name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/custom_name/package.json -------------------------------------------------------------------------------- /test/fixtures/image_view_helper/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/image_view_helper/app.coffee -------------------------------------------------------------------------------- /test/fixtures/image_view_helper/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/image_view_helper/index.jade -------------------------------------------------------------------------------- /test/fixtures/image_view_helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/image_view_helper/package.json -------------------------------------------------------------------------------- /test/fixtures/missing_config/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/missing_config/app.coffee -------------------------------------------------------------------------------- /test/fixtures/missing_config/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/missing_config/index.jade -------------------------------------------------------------------------------- /test/fixtures/missing_config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/missing_config/package.json -------------------------------------------------------------------------------- /test/fixtures/missing_token/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/missing_token/app.coffee -------------------------------------------------------------------------------- /test/fixtures/missing_token/index.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/missing_token/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/missing_token/package.json -------------------------------------------------------------------------------- /test/fixtures/single_entry/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry/app.coffee -------------------------------------------------------------------------------- /test/fixtures/single_entry/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry/index.jade -------------------------------------------------------------------------------- /test/fixtures/single_entry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry/package.json -------------------------------------------------------------------------------- /test/fixtures/single_entry/views/_blog_post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry/views/_blog_post.jade -------------------------------------------------------------------------------- /test/fixtures/single_entry_custom/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_custom/app.coffee -------------------------------------------------------------------------------- /test/fixtures/single_entry_custom/index.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/single_entry_custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_custom/package.json -------------------------------------------------------------------------------- /test/fixtures/single_entry_custom/views/_blog_post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_custom/views/_blog_post.jade -------------------------------------------------------------------------------- /test/fixtures/single_entry_multi/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_multi/app.coffee -------------------------------------------------------------------------------- /test/fixtures/single_entry_multi/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_multi/index.jade -------------------------------------------------------------------------------- /test/fixtures/single_entry_multi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_multi/package.json -------------------------------------------------------------------------------- /test/fixtures/single_entry_multi/views/_blog_post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/single_entry_multi/views/_blog_post.jade -------------------------------------------------------------------------------- /test/fixtures/sort/about.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/sort/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/sort/app.coffee -------------------------------------------------------------------------------- /test/fixtures/sort/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/sort/index.jade -------------------------------------------------------------------------------- /test/fixtures/sort/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/sort/package.json -------------------------------------------------------------------------------- /test/fixtures/sort/posts_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/sort/posts_expected.json -------------------------------------------------------------------------------- /test/fixtures/transform/about.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/transform/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/transform/app.coffee -------------------------------------------------------------------------------- /test/fixtures/transform/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/transform/index.jade -------------------------------------------------------------------------------- /test/fixtures/transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/transform/package.json -------------------------------------------------------------------------------- /test/fixtures/transform/posts_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/transform/posts_expected.json -------------------------------------------------------------------------------- /test/fixtures/write/about.jade: -------------------------------------------------------------------------------- 1 | h1 wow 2 | -------------------------------------------------------------------------------- /test/fixtures/write/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/write/app.coffee -------------------------------------------------------------------------------- /test/fixtures/write/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/write/index.jade -------------------------------------------------------------------------------- /test/fixtures/write/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/fixtures/write/package.json -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/support/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/support/helpers.js -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carrot/roots-contentful/HEAD/test/test.coffee --------------------------------------------------------------------------------