-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmessage_store.gemspec
More file actions
27 lines (23 loc) · 899 Bytes
/
message_store.gemspec
File metadata and controls
27 lines (23 loc) · 899 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'evt-message_store'
s.version = '2.4.0.1'
s.summary = 'Common primitives for platform-specific message store implementations'
s.description = ' '
s.authors = ['The Eventide Project']
s.email = 'opensource@eventide-project.org'
s.homepage = 'https://github.com/eventide-project/message-store'
s.licenses = ['MIT']
s.require_paths = ['lib']
s.files = Dir.glob('{lib}/**/*')
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.4.0'
s.add_runtime_dependency 'evt-casing'
s.add_runtime_dependency 'evt-schema'
s.add_runtime_dependency 'evt-initializer'
s.add_runtime_dependency 'evt-identifier-uuid'
s.add_runtime_dependency 'evt-transform'
s.add_runtime_dependency 'evt-template_method'
s.add_runtime_dependency 'evt-async_invocation'
s.add_development_dependency 'test_bench'
end