-
Notifications
You must be signed in to change notification settings - Fork 2
/
concurrent_rails.gemspec
27 lines (22 loc) · 1020 Bytes
/
concurrent_rails.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
# frozen_string_literal: true
require_relative "lib/concurrent_rails/version"
Gem::Specification.new do |spec|
spec.name = "concurrent_rails"
spec.version = ConcurrentRails::VERSION
spec.authors = ["Luiz Eduardo Kowalski"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/luizkowalski/concurrent_rails"
spec.summary = "Multithread is hard"
spec.description = "Small library to make concurrent-ruby and Rails play nice together"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/luizkowalski/concurrent_rails/blob/master/CHANGELOG.md"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "railties", ">= 6.1"
spec.add_dependency "zeitwerk"
spec.required_ruby_version = ">= 3.1"
spec.metadata = {
"rubygems_mfa_required" => "true"
}
end