-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcdss-ruby.gemspec
More file actions
44 lines (37 loc) · 1.58 KB
/
cdss-ruby.gemspec
File metadata and controls
44 lines (37 loc) · 1.58 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
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true
require_relative "lib/cdss/version"
Gem::Specification.new do |spec|
spec.name = "cdss-ruby"
spec.version = Cdss::VERSION
spec.authors = ["Matt Michnal "]
spec.email = ["mattm3646@gmail.com"]
spec.summary = "Ruby wrapper for various water resource APIs"
spec.description = "Access water station data from USGS, Colorado DWR, TWDB, and other water agencies"
spec.homepage = "https://github.com/mgm702/cdss-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/mgm702/cdss-ruby",
"changelog_uri" => "https://github.com/mgm702/cdss-ruby/blob/main/CHANGELOG.md",
"documentation_uri" => "https://mgm702.com/cdss-ruby/",
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "dry-configurable", "~> 1.0"
spec.add_dependency "httparty", "~> 0.21.0"
spec.add_dependency "zeitwerk", "~> 2.6"
# Development dependencies
spec.add_development_dependency "minitest-reporters", "~> 1.5"
spec.add_development_dependency "vcr", "~> 6.0"
spec.add_development_dependency "webmock", "~> 3.18"
end