Skip to content

Commit 083f4ce

Browse files
authored
Merge pull request #12 from mgm702/develop
Develop -> Main
2 parents 0e402c0 + b029c87 commit 083f4ce

3 files changed

Lines changed: 9 additions & 11 deletions

File tree

cdss-ruby.gemspec

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,28 @@ Gem::Specification.new do |spec|
77
spec.version = Cdss::VERSION
88
spec.authors = ["Matt Michnal "]
99
spec.email = ["mattm3646@gmail.com"]
10-
11-
spec.summary = "Ruby wrapper for various water resource APIs"
12-
spec.description = "Access water station data from USGS, Colorado DWR, TWDB, and other water agencies"
13-
spec.homepage = "https://github.com/mgm702/cdss-ruby"
14-
spec.license = "MIT"
10+
spec.summary = "Ruby wrapper for various water resource APIs"
11+
spec.description = "Access water station data from USGS, Colorado DWR, TWDB, and other water agencies"
12+
spec.homepage = "https://github.com/mgm702/cdss-ruby"
13+
spec.license = "MIT"
1514
spec.required_ruby_version = ">= 2.7.0"
1615

1716
spec.metadata = {
1817
"allowed_push_host" => "https://rubygems.org",
1918
"homepage_uri" => spec.homepage,
2019
"source_code_uri" => "https://github.com/mgm702/cdss-ruby",
2120
"changelog_uri" => "https://github.com/mgm702/cdss-ruby/blob/main/CHANGELOG.md",
21+
"documentation_uri" => "https://github.com/mgm702/cdss-ruby/blob/main/README.md",
2222
"rubygems_mfa_required" => "true"
2323
}
2424

2525
# Specify which files should be added to the gem when it is released.
26-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
2726
spec.files = Dir.chdir(__dir__) do
2827
`git ls-files -z`.split("\x0").reject do |f|
29-
(File.expand_path(f) == __FILE__) ||
30-
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
28+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
3129
end
3230
end
31+
3332
spec.bindir = "exe"
3433
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
3534
spec.require_paths = ["lib"]
@@ -45,5 +44,4 @@ Gem::Specification.new do |spec|
4544
spec.add_development_dependency "rake", "~> 13.0"
4645
spec.add_development_dependency "vcr", "~> 6.0"
4746
spec.add_development_dependency "webmock", "~> 3.18"
48-
spec.metadata["rubygems_mfa_required"] = "true"
4947
end

docs/file.README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ <h2 id="label-Code+of+Conduct">Code of Conduct</h2>
105105

106106
</div>
107107
</body>
108-
</html>
108+
</html>

lib/cdss/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Cdss
4-
VERSION = "0.1.0"
4+
VERSION = "1.0.0"
55
end

0 commit comments

Comments
 (0)