diff options
| author | Johan Andersson <johan.rejeep@gmail.com> | 2012-10-20 20:42:07 +0200 |
|---|---|---|
| committer | Johan Andersson <johan.rejeep@gmail.com> | 2012-10-20 20:42:07 +0200 |
| commit | d2f1c1dbcbc8817e46648dfa6e74541a099185fb (patch) | |
| tree | 1fa8d0ecb44607289d24e4b76511fca4b16b4c2d | |
| parent | 77ad77ad67353483f1a0eb9675330714cae3ccac (diff) | |
Add Carton.
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Carton | 5 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | README.md | 15 | ||||
| -rw-r--r-- | projectile-pkg.el | 3 |
5 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a803a30 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/elpa @@ -0,0 +1,5 @@ +(source "melpa" "http://melpa.milkbox.net/packages/") + +(package "projectile" "0.7" "Manage and navigate projects in Emacs easily") + +(depends-on "s" "1.0.0") diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c27bdd2 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + carton exec ./test/projectile-test @@ -175,6 +175,21 @@ and sent me a pull request. :-) Here's a [list](https://github.com/bbatsov/projectile/contributors) of all the people who have contributed to the development of Projectile. +## Contribution + +Contribution is always welcome! + +Install [carton](https://github.com/rejeep/carton) if you haven't +already, then: + + $ cd /path/to/projectile + $ carton + +Run all tests with: + + $ make + + ## Bugs & Improvements Bug reports and suggestions for improvements are always diff --git a/projectile-pkg.el b/projectile-pkg.el new file mode 100644 index 0000000..8dd6ffd --- /dev/null +++ b/projectile-pkg.el @@ -0,0 +1,3 @@ +(define-package "projectile" "0.7" + "Manage and navigate projects in Emacs easily" + '((s "1.0.0"))) |
