├── README.md ├── rename.json ├── root ├── .jshintrc ├── Gruntfile.js ├── README.md ├── css │ └── style.css ├── gitignore ├── index.html ├── js │ ├── app.js │ └── sharing.js ├── lib │ └── inflection.js └── permissions.js └── template.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/README.md -------------------------------------------------------------------------------- /rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/rename.json -------------------------------------------------------------------------------- /root/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/.jshintrc -------------------------------------------------------------------------------- /root/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/Gruntfile.js -------------------------------------------------------------------------------- /root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/README.md -------------------------------------------------------------------------------- /root/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/css/style.css -------------------------------------------------------------------------------- /root/gitignore: -------------------------------------------------------------------------------- 1 | permissions.js 2 | -------------------------------------------------------------------------------- /root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/index.html -------------------------------------------------------------------------------- /root/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/js/app.js -------------------------------------------------------------------------------- /root/js/sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/js/sharing.js -------------------------------------------------------------------------------- /root/lib/inflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/lib/inflection.js -------------------------------------------------------------------------------- /root/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/root/permissions.js -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dariusk/grunt-init-textgen/HEAD/template.js --------------------------------------------------------------------------------