Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions cdss-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,28 @@ Gem::Specification.new do |spec|
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.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 = ">= 2.7.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://github.com/mgm702/cdss-ruby/blob/main/README.md",
"rubygems_mfa_required" => "true"
}

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
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"]
Expand All @@ -45,5 +44,4 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "vcr", "~> 6.0"
spec.add_development_dependency "webmock", "~> 3.18"
spec.metadata["rubygems_mfa_required"] = "true"
end
2 changes: 1 addition & 1 deletion docs/file.README.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ <h2 id="label-Code+of+Conduct">Code of Conduct</h2>

</div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion lib/cdss/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Cdss
VERSION = "0.1.0"
VERSION = "1.0.0"
end