-
Notifications
You must be signed in to change notification settings - Fork 4
/
freezolite.gemspec
32 lines (26 loc) · 1.12 KB
/
freezolite.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
# frozen_string_literal: true
require_relative "lib/freezolite/version"
Gem::Specification.new do |s|
s.name = "freezolite"
s.version = Freezolite::VERSION
s.authors = ["Vladimir Dementyev"]
s.email = ["Vladimir Dementyev"]
s.homepage = "https://github.com/ruby-next/freezolite"
s.summary = "Example description"
s.description = "Example description"
s.metadata = {
"bug_tracker_uri" => "https://github.com/ruby-next/freezolite/issues",
"changelog_uri" => "https://github.com/ruby-next/freezolite/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/ruby-next/freezolite",
"homepage_uri" => "https://github.com/ruby-next/freezolite",
"source_code_uri" => "https://github.com/ruby-next/freezolite"
}
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 "require-hooks", "~> 0.2"
s.add_development_dependency "bundler", ">= 1.15"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "minitest", "~> 5.0"
end