forked from jmettraux/ruote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruote.gemspec
38 lines (32 loc) · 843 Bytes
/
ruote.gemspec
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
Gem::Specification.new do |s|
s.name = 'ruote'
s.version = '0.9.21'
s.authors = [ 'John Mettraux', 'Alain Hoang' ]
s.email = '[email protected]'
s.homepage = 'http://openwferu.rubyforge.org'
s.platform = Gem::Platform::RUBY
s.summary = 'an open source ruby workflow and bpm engine'
s.require_path = 'lib'
s.rubyforge_project = 'openwferu'
#s.autorequire = 'ruote'
s.test_file = 'test/test.rb'
s.has_rdoc = true
s.extra_rdoc_files = [ 'README.txt' ]
[
'builder',
#'json_pure',
'rufus-lru',
'rufus-scheduler',
'rufus-dollar',
'rufus-treechecker',
'rufus-mnemo',
'rufus-verbs'
].each { |d|
s.requirements << d
s.add_dependency(d)
}
files = FileList[ '{bin,docs,lib,test,examples}/**/*' ]
files.exclude 'rdoc'
#files.exclude 'extras'
s.files = files.to_a
end