forked from jmettraux/ruote-mon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruote-mon.gemspec
34 lines (25 loc) · 890 Bytes
/
ruote-mon.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
Gem::Specification.new do |s|
s.name = 'ruote-mon'
s.version = File.read(
File.expand_path('../lib/ruote/mon/version.rb', __FILE__)
).match(/ VERSION *= *['"]([^'"]+)/)[1]
s.platform = Gem::Platform::RUBY
s.authors = [ 'John Mettraux' ]
s.email = [ '[email protected]' ]
s.homepage = 'http://ruote.rubyforge.org'
s.rubyforge_project = 'ruote'
s.summary = 'MongoDB storage for ruote (a Ruby workflow engine)'
s.description = %q{
MongoDB storage for ruote (a 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 'mongoid'#, '>= 3.2.0'
s.add_runtime_dependency 'ruote', ">= #{s.version.to_s.split('.')[0, 3].join('.')}"
s.add_development_dependency 'rake'
s.require_path = 'lib'
end