forked from marick/Midje
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
38 lines (31 loc) · 697 Bytes
/
Rakefile
File metadata and controls
38 lines (31 loc) · 697 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- Mode: ruby -*-
require 'rubygems'
require 'rake'
def jar_name
text = File.read('project.clj')
unless /midje\s+"(\d+\.\d+\.\d+(-[A-Z]+)?)"/ =~ text
"Couldn't find version in project file."
exit 1
end
"midje-#{$1}.jar"
end
def doit(text)
puts "== " + text
system(text)
end
task :default => :fresh
desc "Test a fresh build, manual checking for now"
task :fresh do
doit("lein clean")
doit("lein jar")
puts "bin/version and bin/run-tests"
end
task :jar_name do
puts jar_name
end
desc "upload to clojars"
task :upload do
doit("lein pom")
doit("mv midje.jar #{jar_name} ")
doit("scp pom.xml #{jar_name} clojars@clojars.org:")
end