@@ -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{\A exe/} ) { |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"
4947end
0 commit comments