-
Notifications
You must be signed in to change notification settings - Fork 0
/
libis-workflow-mongoid.gemspec
39 lines (28 loc) · 1.29 KB
/
libis-workflow-mongoid.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
require 'date'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'libis/workflow/mongoid/version'
# noinspection RubyResolve
Gem::Specification.new do |spec|
spec.name = 'libis-workflow-mongoid'
spec.version = ::Libis::Workflow::Mongoid::VERSION
spec.date = Date.today.to_s
spec.summary = %q{Mongoid persistence for the LIBIS Workflow framework.}
spec.description = %q{Class implementations that use Mongoid storage for the LIBIS Workflow framework.}
spec.author = 'Kris Dekeyser'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/libis/workflow-mongoid'
spec.license = 'MIT'
# noinspection RubyResolve
spec.platform = Gem::Platform::JAVA if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'
spec.files = `git ls-files -z`.split("\0")
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'libis-workflow', '~> 2.0', '>= 2.1.15'
spec.add_runtime_dependency 'mongoid', '~> 8.1'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'coveralls'
end