forked from seattlerb/heckle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
30 lines (22 loc) · 816 Bytes
/
Rakefile
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
# -*- ruby -*-
require 'rubygems'
require 'hoe'
Hoe.add_include_dirs("../../RubyInline/dev/lib",
"../../ruby2ruby/1.3.1/lib",
"../../ZenTest/dev/lib",
"../../sexp_processor/dev/lib",
"../../ruby_parser/2.3.1/lib",
"lib")
Hoe.plugin :seattlerb
Hoe.spec 'heckle' do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
developer 'Pete Higgins', 'pete@peterhiggins.org'
# developer 'Eric Hodel', 'drbrain@segment7.net'
# developer 'Kevin Clark', 'kevin.clark@gmail.com'
clean_globs << File.expand_path("~/.ruby_inline")
dependency 'ruby_parser', '~> 2.3.1'
dependency 'ruby2ruby', '~> 1.3.0'
dependency 'ZenTest', '~> 4.7.0'
self.test_globs = ["test/test_*.rb"]
end
# vim: syntax=ruby