public
Description: elisp utility for defining functions which contextually jump between files
Homepage:
Clone URL: git://github.com/eschulte/jump.el.git
jump.el / Rakefile
100644 25 lines (17 sloc) 0.456 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
MYDIR = File.dirname(__FILE__)
TESTDIR = "#{MYDIR}/test"
 
namespace "test" do
  
  desc "Run tests using `emacs-snapshot'"
  task :snapshot do
    system "emacs-snapshot -Q -l #{TESTDIR}/init.el"
  end
 
  desc "Run tests using `emacs-22'"
  task :twenty_two do
    system "emacs22 -Q -l #{TESTDIR}/init.el"
  end
  
  desc "Run tests using `emacs'"
  task :emacs do
    system "emacs -Q -l #{TESTDIR}/init.el"
  end
  
end
 
task :default => 'test:emacs'