├── .dir-locals.el ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cask ├── Makefile ├── README.md ├── features ├── destroy.feature ├── expanding-snippets-in-new-buffers.feature ├── extracting-region.feature ├── font-locking.feature ├── generate.feature ├── keybindings.feature ├── navigation │ ├── creating-new-files.feature │ ├── finding-current-resource.feature │ ├── finding-environment.feature │ ├── finding-fixture.feature │ ├── finding-initializer.feature │ ├── finding-layout.feature │ ├── finding-locales.feature │ ├── finding-logs.feature │ ├── finding-mailer.feature │ ├── finding-resources.feature │ ├── finding-test.feature │ ├── going-from-controller-to-template-at-point.feature │ ├── going-from-template-to-tomplate-at-point.feature │ ├── going-to-constant-at-point.feature │ ├── going-to-file-at-require-statement.feature │ ├── going-to-javascript-from-assets-pipeline-manifest.feature │ ├── going-to-stylesheet-from-assets-pipeline-manifest.feature │ └── goto-rails-universal-file.feature ├── rails-console.feature ├── rails-server.feature ├── rake.feature ├── step-definitions │ └── projectile-rails-steps.el ├── support │ └── env.el └── turning-on-and-off.feature ├── projectile-rails.el ├── screenshots └── discover.png └── test ├── projectile-rails-current-resource-name-test.el ├── projectile-rails-find-resources-test.el ├── projectile-rails-goto-template-at-point-test.el ├── projectile-rails-test.el ├── run-tests └── setup.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/README.md -------------------------------------------------------------------------------- /features/destroy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/destroy.feature -------------------------------------------------------------------------------- /features/expanding-snippets-in-new-buffers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/expanding-snippets-in-new-buffers.feature -------------------------------------------------------------------------------- /features/extracting-region.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/extracting-region.feature -------------------------------------------------------------------------------- /features/font-locking.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/font-locking.feature -------------------------------------------------------------------------------- /features/generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/generate.feature -------------------------------------------------------------------------------- /features/keybindings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/keybindings.feature -------------------------------------------------------------------------------- /features/navigation/creating-new-files.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/creating-new-files.feature -------------------------------------------------------------------------------- /features/navigation/finding-current-resource.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-current-resource.feature -------------------------------------------------------------------------------- /features/navigation/finding-environment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-environment.feature -------------------------------------------------------------------------------- /features/navigation/finding-fixture.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-fixture.feature -------------------------------------------------------------------------------- /features/navigation/finding-initializer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-initializer.feature -------------------------------------------------------------------------------- /features/navigation/finding-layout.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-layout.feature -------------------------------------------------------------------------------- /features/navigation/finding-locales.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-locales.feature -------------------------------------------------------------------------------- /features/navigation/finding-logs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-logs.feature -------------------------------------------------------------------------------- /features/navigation/finding-mailer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-mailer.feature -------------------------------------------------------------------------------- /features/navigation/finding-resources.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-resources.feature -------------------------------------------------------------------------------- /features/navigation/finding-test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/finding-test.feature -------------------------------------------------------------------------------- /features/navigation/going-from-controller-to-template-at-point.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-from-controller-to-template-at-point.feature -------------------------------------------------------------------------------- /features/navigation/going-from-template-to-tomplate-at-point.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-from-template-to-tomplate-at-point.feature -------------------------------------------------------------------------------- /features/navigation/going-to-constant-at-point.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-to-constant-at-point.feature -------------------------------------------------------------------------------- /features/navigation/going-to-file-at-require-statement.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-to-file-at-require-statement.feature -------------------------------------------------------------------------------- /features/navigation/going-to-javascript-from-assets-pipeline-manifest.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-to-javascript-from-assets-pipeline-manifest.feature -------------------------------------------------------------------------------- /features/navigation/going-to-stylesheet-from-assets-pipeline-manifest.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/going-to-stylesheet-from-assets-pipeline-manifest.feature -------------------------------------------------------------------------------- /features/navigation/goto-rails-universal-file.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/navigation/goto-rails-universal-file.feature -------------------------------------------------------------------------------- /features/rails-console.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/rails-console.feature -------------------------------------------------------------------------------- /features/rails-server.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/rails-server.feature -------------------------------------------------------------------------------- /features/rake.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/rake.feature -------------------------------------------------------------------------------- /features/step-definitions/projectile-rails-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/step-definitions/projectile-rails-steps.el -------------------------------------------------------------------------------- /features/support/env.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/support/env.el -------------------------------------------------------------------------------- /features/turning-on-and-off.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/features/turning-on-and-off.feature -------------------------------------------------------------------------------- /projectile-rails.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/projectile-rails.el -------------------------------------------------------------------------------- /screenshots/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/screenshots/discover.png -------------------------------------------------------------------------------- /test/projectile-rails-current-resource-name-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/test/projectile-rails-current-resource-name-test.el -------------------------------------------------------------------------------- /test/projectile-rails-find-resources-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/test/projectile-rails-find-resources-test.el -------------------------------------------------------------------------------- /test/projectile-rails-goto-template-at-point-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/test/projectile-rails-goto-template-at-point-test.el -------------------------------------------------------------------------------- /test/projectile-rails-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/test/projectile-rails-test.el -------------------------------------------------------------------------------- /test/run-tests: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | "${EMACS:-emacs}" --script "$(dirname $0)"/setup.el -Q 4 | -------------------------------------------------------------------------------- /test/setup.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asok/projectile-rails/HEAD/test/setup.el --------------------------------------------------------------------------------