public
Description: a ruby workflow engine
Homepage: http://ruote.rubyforge.org
Clone URL: git://github.com/jmettraux/ruote.git
commit  bbb90e68d5399a2a62c020b83ecf65403ac0f75d
tree    fae8d1ab378f8e790de98c2a6d7f83a0b0bb5201
parent  5cc4a81016fb45f5e4754c407cc202b3ef0470ad
ruote / ruote.gemspec
100644 39 lines (32 sloc) 0.843 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Gem::Specification.new do |s|
 
  s.name = 'ruote'
  s.version = '0.9.21'
  s.authors = [ 'John Mettraux', 'Alain Hoang' ]
  s.email = 'jmettraux@gmail.com'
  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