aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Andersson <johan.rejeep@gmail.com>2012-10-20 20:42:07 +0200
committerJohan Andersson <johan.rejeep@gmail.com>2012-10-20 20:42:07 +0200
commitd2f1c1dbcbc8817e46648dfa6e74541a099185fb (patch)
tree1fa8d0ecb44607289d24e4b76511fca4b16b4c2d
parent77ad77ad67353483f1a0eb9675330714cae3ccac (diff)
Add Carton.
-rw-r--r--.gitignore1
-rw-r--r--Carton5
-rw-r--r--Makefile2
-rw-r--r--README.md15
-rw-r--r--projectile-pkg.el3
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
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")))