-
Notifications
You must be signed in to change notification settings - Fork 1
/
im.gemspec
26 lines (22 loc) · 854 Bytes
/
im.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
# frozen_string_literal: true
require_relative "lib/im/version"
Gem::Specification.new do |spec|
spec.name = "im"
spec.summary = "Multiverse autoloader"
spec.description = <<-EOS
Im is a thread-safe code loader for anonymous-rooted namespaces.
EOS
spec.author = "Chris Salzberg"
spec.email = "[email protected]"
spec.license = "MIT"
spec.homepage = "https://github.com/shioyama/im"
spec.files = Dir["README.md", "MIT-LICENSE", "lib/**/*.rb"]
spec.version = Im::VERSION
spec.metadata = {
"homepage_uri" => "https://github.com/shioyama/im",
"changelog_uri" => "https://github.com/shioyama/im/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/shioyama/im",
"bug_tracker_uri" => "https://github.com/shioyama/im/issues"
}
spec.required_ruby_version = ">= 3.2"
end