-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRakefile
More file actions
28 lines (20 loc) · 643 Bytes
/
Rakefile
File metadata and controls
28 lines (20 loc) · 643 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
# -*- ruby -*-
require 'rubygems'
require 'hoe'
Hoe.add_include_dirs("../../ParseTree/dev/test",
"../../ruby_parser/dev/lib",
"../../sexp_processor/dev/lib",
"../../sexp_processor/dev/test",
"lib")
Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.spec "ruby2c" do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
developer 'Eric Hodel', 'drbrain@segment7.net'
license "MIT"
dependency "ruby_parser", "~> 3.0"
dependency "sexp_processor", "~> 4.1"
dependency "racc", ">0", :development
end
ENV["MT_NO_EXPECTATIONS"] = "1"
# vim: syntax=ruby