-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfraction_tree.gemspec
27 lines (26 loc) · 1.12 KB
/
fraction_tree.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
require "date"
Gem::Specification.new do |spec|
spec.name = "fraction-tree"
spec.version = "2.1.1"
spec.summary = "Fraction tree"
spec.description = "A collection of Stern-Brocot based models and methods"
spec.authors = ["Jose Hales-Garcia"]
spec.email = "[email protected]"
spec.homepage = "https://jolohaga.github.io/fraction-tree/"
spec.metadata = {
"source_code_uri" => "https://github.com/jolohaga/fraction-tree"
}
spec.license = "MIT"
spec.date = Date.today.to_s
spec.files = Dir.glob("lib/**/*")
spec.required_ruby_version = Gem::Requirement.new(">= 3.1")
spec.required_rubygems_version = Gem::Requirement.new(">= 3.1")
spec.rubygems_version = "3.5.23"
spec.add_runtime_dependency "matrix", ["~> 0.4"]
spec.add_runtime_dependency "forwardable", ["~> 1.3"]
spec.add_runtime_dependency "continued_fractions", ["~> 2.1"]
spec.add_development_dependency "rspec", ["~> 3"]
spec.add_development_dependency "byebug", ["~> 11.1"]
spec.add_development_dependency "yard", ["~> 0.9"]
spec.add_development_dependency "rspec-benchmark", ["~> 0.6"]
end