-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhere_streets.gemspec
More file actions
31 lines (26 loc) · 1.11 KB
/
Copy pathwhere_streets.gemspec
File metadata and controls
31 lines (26 loc) · 1.11 KB
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
require_relative "lib/where_streets/version"
Gem::Specification.new do |spec|
spec.name = "where_streets"
spec.version = WhereStreets::VERSION
spec.authors = ["hfpp2012copy"]
spec.email = ["hfpp2012@gmail.com"]
spec.summary = ""
spec.homepage = "https://github.com/hfpp2012/where_streets"
spec.license = "MPL"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/hfpp2012/where_streets/issues",
"changelog_uri" => "https://github.com/hfpp2012/where_streets/releases",
"source_code_uri" => "https://github.com/hfpp2012/where_streets",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE README.md pcas.json pcas.mp {lib}/**/*]).reject { |f| File.directory?(f) }
spec.require_paths = ["lib"]
spec.add_dependency "fast_blank", "~> 1.0.1"
spec.add_dependency "forwardable", "~> 1.3.2"
spec.add_dependency "json", "~> 2.6.1"
spec.add_dependency "singleton", "~> 0.1.1"
spec.add_dependency "msgpack", "~> 1.5.1"
end