-
Notifications
You must be signed in to change notification settings - Fork 74
/
ruote.gemspec
50 lines (39 loc) · 1.5 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
Gem::Specification.new do |s|
s.name = 'ruote'
s.version = File.read(
File.expand_path('../lib/ruote/version.rb', __FILE__)
).match(/ VERSION *= *['"]([^'"]+)/)[1]
s.platform = Gem::Platform::RUBY
s.authors = [ 'John Mettraux', 'Kenneth Kalmer', 'Torsten Schoenebaum' ]
s.email = [ '[email protected]' ]
s.homepage = 'http://ruote.rubyforge.org'
s.rubyforge_project = 'ruote'
s.license = 'MIT'
s.summary = 'an open source Ruby workflow engine'
s.description = %{
ruote is an open source Ruby workflow engine
}
#s.files = `git ls-files`.split("\n")
s.files = Dir[
'Rakefile',
'lib/**/*.rb', 'spec/**/*.rb', 'test/**/*.rb',
'*.gemspec', '*.txt', '*.rdoc', '*.md'
]
s.add_runtime_dependency 'ruby_parser', '>= 2.3', '< 4.0'
# ruby_parser 3.x is very different,
# will rather go the ripper way (full 19 or even 20)...
s.add_runtime_dependency 'blankslate', '2.1.2.4'
s.add_runtime_dependency 'parslet', '1.4.0'
# not yet Parslet 1.5.x ready
s.add_runtime_dependency 'sourcify', '0.5.0'
s.add_runtime_dependency 'rufus-json', '>= 1.0.5'
s.add_runtime_dependency 'rufus-cloche', '>= 1.0.2'
s.add_runtime_dependency 'rufus-dollar', '>= 1.0.4'
s.add_runtime_dependency 'rufus-mnemo', '>= 1.2.2'
s.add_runtime_dependency 'rufus-scheduler', '>= 3.0.0'
s.add_runtime_dependency 'rufus-treechecker', '>= 1.0.8'
s.add_development_dependency 'rake'
s.add_development_dependency 'json'
s.add_development_dependency 'mailtrap'
s.require_path = 'lib'
end