-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfair_dice_roll.gemspec
40 lines (33 loc) · 1.19 KB
/
fair_dice_roll.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
38
39
40
# frozen_string_literal: true
require_relative "lib/fair_dice_roll/version"
Gem::Specification.new do |spec|
spec.name = "fair_dice_roll"
spec.summary = "Guaranteed to be random."
spec.description = "Chosen by fair dice roll. Guaranteed to be random."
spec.version = FairDiceRoll::VERSION
spec.author = "Steve Richert"
spec.email = "steve.richert@hey.com"
spec.license = "MIT"
spec.homepage = "https://github.com/laserlemon/fair_dice_roll"
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/laserlemon/fair_dice_roll/issues",
"funding_uri" => "https://github.com/sponsors/laserlemon",
"homepage_uri" => "https://github.com/laserlemon/fair_dice_roll",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/laserlemon/fair_dice_roll",
}
spec.required_ruby_version = ">= 3.0.0"
spec.add_development_dependency "bundler", ">= 2"
spec.add_development_dependency "rake", ">= 13"
spec.files = [
"fair_dice_roll.gemspec",
"lib/fair_dice_roll.rb",
"lib/fair_dice_roll/version.rb",
"LICENSE.txt",
]
spec.extra_rdoc_files = [
"CHANGELOG.md",
"README.md",
]
end