-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathaggregate_root.gemspec
More file actions
27 lines (23 loc) · 951 Bytes
/
aggregate_root.gemspec
File metadata and controls
27 lines (23 loc) · 951 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
# frozen_string_literal: true
require_relative "lib/aggregate_root/version"
Gem::Specification.new do |spec|
spec.name = "aggregate_root"
spec.version = AggregateRoot::VERSION
spec.license = "MIT"
spec.author = "Arkency"
spec.email = "dev@arkency.com"
spec.summary = "Event sourced aggregate root implementation for RubyEventStore"
spec.homepage = "https://railseventstore.org"
spec.files = Dir["lib/**/*"]
spec.require_paths = %w[lib]
spec.extra_rdoc_files = %w[README.md]
spec.metadata = {
"homepage_uri" => spec.homepage,
"changelog_uri" => "https://github.com/RailsEventStore/rails_event_store/releases",
"source_code_uri" => "https://github.com/RailsEventStore/rails_event_store",
"bug_tracker_uri" => "https://github.com/RailsEventStore/rails_event_store/issues",
"rubygems_mfa_required" => "true"
}
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "ruby_event_store", "= 2.18.0"
end