-
Notifications
You must be signed in to change notification settings - Fork 13
/
active_event_store.gemspec
35 lines (28 loc) · 1.36 KB
/
active_event_store.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
# frozen_string_literal: true
require_relative "lib/active_event_store/version"
Gem::Specification.new do |s|
s.name = "active_event_store"
s.version = ActiveEventStore::VERSION
s.authors = ["Vladimir Dementyev"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/palkan/active_event_store"
s.summary = "Rails Event Store in a more Rails way"
s.description = "Wrapper over Rails Event Store with conventions and transparent Rails integration"
s.metadata = {
"bug_tracker_uri" => "http://github.com/palkan/active_event_store/issues",
"changelog_uri" => "https://github.com/palkan/active_event_store/blob/master/CHANGELOG.md",
"documentation_uri" => "http://github.com/palkan/active_event_store",
"homepage_uri" => "http://github.com/palkan/active_event_store",
"source_code_uri" => "http://github.com/palkan/active_event_store"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + Dir.glob("bin/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.7"
s.add_dependency "rails_event_store", ">= 2.11.0"
s.add_development_dependency "bundler", ">= 1.15"
s.add_development_dependency "combustion", ">= 1.1"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "rspec-rails", ">= 3.8"
s.add_development_dependency "minitest", "~> 5.0"
end