From d2f1c1dbcbc8817e46648dfa6e74541a099185fb Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sat, 20 Oct 2012 20:42:07 +0200 Subject: Add Carton. --- .gitignore | 1 + Carton | 5 +++++ Makefile | 2 ++ README.md | 15 +++++++++++++++ projectile-pkg.el | 3 +++ 5 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 Carton create mode 100644 Makefile create mode 100644 projectile-pkg.el diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a803a30 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/elpa diff --git a/Carton b/Carton new file mode 100644 index 0000000..5e5023f --- /dev/null +++ b/Carton @@ -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 diff --git a/README.md b/README.md index d38bb86..9f579f6 100644 --- a/README.md +++ b/README.md @@ -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"))) -- cgit v1.0