-
Notifications
You must be signed in to change notification settings - Fork 25
/
memo_wise.gemspec
37 lines (30 loc) · 1.01 KB
/
memo_wise.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
36
37
# frozen_string_literal: true
require_relative "lib/memo_wise/version"
Gem::Specification.new do |spec|
spec.name = "memo_wise"
spec.version = MemoWise::VERSION
spec.summary = "The wise choice for Ruby memoization"
spec.homepage = "https://github.com/panorama-ed/memo_wise"
spec.license = "MIT"
spec.authors = [
"Panorama Education",
"Jacob Evelyn",
"Jemma Issroff",
"Marc Siegel",
]
spec.email = [
]
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob("{CHANGELOG.md,LICENSE.txt,README.md,lib/**/*.rb}")
spec.require_paths = ["lib"]
spec.metadata = {
"rubygems_mfa_required" => "true",
"changelog_uri" => "https://github.com/panorama-ed/memo_wise/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/panorama-ed/memo_wise"
}
end