├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── app ├── index.js └── templates │ ├── README.md │ ├── _package.json │ ├── gitignore │ ├── grammars │ └── grammar.cson │ ├── index.coffee │ ├── jshintrc │ ├── keymaps │ └── keymap.cson │ ├── lib │ └── name.coffee │ ├── menus │ ├── application-menu.cson │ └── context-menu.cson │ ├── snippets │ └── language.cson │ ├── spec │ ├── fixtures │ │ └── fixture.coffee │ └── test.coffee │ ├── stylesheets │ └── style.css │ └── travis.yml ├── package.json └── test ├── temp ├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── grammars │ └── grammar.cson ├── index.coffee ├── keymaps │ └── keymap.cson ├── lib │ └── awesome.coffee ├── menus │ ├── application-menu.cson │ └── context-menu.cson ├── package.json ├── snippets │ └── language.cson ├── spec │ ├── awesome_test.coffee │ └── fixtures │ │ └── awesome_fixture.coffee └── stylesheets │ └── style.css ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/README.md -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /app/templates/grammars/grammar.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/grammars/grammar.cson -------------------------------------------------------------------------------- /app/templates/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/index.coffee -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/keymaps/keymap.cson: -------------------------------------------------------------------------------- 1 | '.workspace': 2 | 'shortcut-key': 'action' 3 | -------------------------------------------------------------------------------- /app/templates/lib/name.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/lib/name.coffee -------------------------------------------------------------------------------- /app/templates/menus/application-menu.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/menus/application-menu.cson -------------------------------------------------------------------------------- /app/templates/menus/context-menu.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/menus/context-menu.cson -------------------------------------------------------------------------------- /app/templates/snippets/language.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/snippets/language.cson -------------------------------------------------------------------------------- /app/templates/spec/fixtures/fixture.coffee: -------------------------------------------------------------------------------- 1 | # Your fixtures go in here. -------------------------------------------------------------------------------- /app/templates/spec/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/spec/test.coffee -------------------------------------------------------------------------------- /app/templates/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | /*Fill in your CSS style here.*/ -------------------------------------------------------------------------------- /app/templates/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/app/templates/travis.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/package.json -------------------------------------------------------------------------------- /test/temp/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /test/temp/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/.jshintrc -------------------------------------------------------------------------------- /test/temp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/.travis.yml -------------------------------------------------------------------------------- /test/temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/README.md -------------------------------------------------------------------------------- /test/temp/grammars/grammar.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/grammars/grammar.cson -------------------------------------------------------------------------------- /test/temp/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/index.coffee -------------------------------------------------------------------------------- /test/temp/keymaps/keymap.cson: -------------------------------------------------------------------------------- 1 | '.workspace': 2 | 'shortcut-key': 'action' 3 | -------------------------------------------------------------------------------- /test/temp/lib/awesome.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/lib/awesome.coffee -------------------------------------------------------------------------------- /test/temp/menus/application-menu.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/menus/application-menu.cson -------------------------------------------------------------------------------- /test/temp/menus/context-menu.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/menus/context-menu.cson -------------------------------------------------------------------------------- /test/temp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/package.json -------------------------------------------------------------------------------- /test/temp/snippets/language.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/snippets/language.cson -------------------------------------------------------------------------------- /test/temp/spec/awesome_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/temp/spec/awesome_test.coffee -------------------------------------------------------------------------------- /test/temp/spec/fixtures/awesome_fixture.coffee: -------------------------------------------------------------------------------- 1 | # Your fixtures go in here. -------------------------------------------------------------------------------- /test/temp/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | /*Fill in your CSS style here.*/ -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/generator-atom/HEAD/test/test-load.js --------------------------------------------------------------------------------