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 38 39 40 41
|
# frozen_string_literal: true
require_relative "lib/memo_wise/version"
Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
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 = [
"engineering@panoramaed.com",
"jacobevelyn@gmail.com",
"jemmaissroff@gmail.com",
"marc@usainnov.com",
]
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added
# into git.
spec.files = Dir.glob("**/*").reject do |f|
f =~ /^(test|spec|features|debian)/
end
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
|