usgs-ruby 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90c31d4e2da0bfbeda5ed5e6b5ae37b358df9432740c7b55bb730e445600c07f
4
- data.tar.gz: 9f8ec80140d27872755ae841a8022d4590590dcd8b8ca0520b19bb8ad2ec48ae
3
+ metadata.gz: ee28b816d870859e6019697831777f9b59915fe1281f0affed8aa09deba83b32
4
+ data.tar.gz: aa0be9bd05fe42ce26632b0dd6455552f86585a1a1f0cd8b49977c8c15aeb813
5
5
  SHA512:
6
- metadata.gz: f14971c5157e372bcf0fdbae4272aa3477a49a44c417a7ae8951fd04447ef7457bed798e32024921893ca545d952e1bf6492cf47cab7c444c04de19e4052617d
7
- data.tar.gz: 9941d12c94c95e9e2a0e009ea026c93de0b2dc288241c07d421febfce5e2090657f7288c875a83287e750d9cdb4dbf3ca09131350c06b0dae9c3461283e85247
6
+ metadata.gz: 3ed1d972ac98197d30e331fac8bba39ac1480390c426921d6c1cc9828763222ee1f3ba7e3688f37ef3d171ee6c631ec00e02a7833d25d9ef883b66cddcc4b7fc
7
+ data.tar.gz: 90cd16bb3f1dfe391819cce0ef9a8748bdf186e83363bd1a631f1d354d583a5c5f028f0c3d799a9dae0c2c761d0cf7f6cca59089f7663c1902373adc169509ec
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # **usgs-ruby**
2
2
 
3
- [![Build Status](https://github.com/YOUR_USERNAME/usgs-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/YOUR_USERNAME/usgs-ruby/actions)
3
+ [![Build Status](https://github.com/mgm702/usgs-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/mgm702/usgs-ruby/actions)
4
4
  [![Gem Version](https://badge.fury.io/rb/usgs-ruby.svg)](https://badge.fury.io/rb/usgs-ruby)
5
5
  [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
6
6
 
@@ -226,7 +226,7 @@ Please make sure that your commit messages are clear and understandable.
226
226
 
227
227
  ## **Documentation**
228
228
 
229
- Full API documentation is available at [https://YOUR_USERNAME.github.io/usgs-ruby](https://YOUR_USERNAME.github.io/usgs-ruby)
229
+ Full API documentation is available at [https://mgm702.github.io/usgs-ruby](https://YOUR_USERNAME.github.io/usgs-ruby)
230
230
 
231
231
  ## **Resources**
232
232
 
@@ -253,4 +253,7 @@ If you encounter any issues or have questions:
253
253
 
254
254
  ---
255
255
 
256
- **Like the gem?** Star the repository on [GitHub](https://github.com/YOUR_USERNAME/usgs-ruby)!
256
+ ## Like The Gem?
257
+
258
+ If you like usgs-ruby follow the repository on [Github](https://github.com/mgm702/usgs-ruby) and if you are feeling extra nice, follow the author [mgm702](http://mgm702.com) on [Twitter](https://twitter.com/mgm702) or [Github](https://github.com/mgm702).
259
+
@@ -4,6 +4,7 @@
4
4
  module Usgs
5
5
  module DailyValues
6
6
  include Utils
7
+
7
8
  # Fetch daily values (DV) from USGS NWIS
8
9
  #
9
10
  # @param sites [String, Array<String>] USGS site ID(s)
@@ -3,6 +3,7 @@
3
3
  module Usgs
4
4
  module InstantaneousValues
5
5
  include Utils
6
+
6
7
  # Fetch instantaneous values (IV) from USGS NWIS
7
8
  #
8
9
  # @param sites [String, Array<String>] One or more USGS site IDs
data/lib/usgs/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Usgs
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
data/lib/usgs.rb CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  require "zeitwerk"
4
4
  require "dry-configurable"
5
- require "httparty"
6
5
  require "json"
7
6
 
8
7
  module Usgs
data/usgs-ruby.gemspec CHANGED
@@ -35,7 +35,6 @@ Gem::Specification.new do |spec|
35
35
  spec.require_paths = ["lib"]
36
36
 
37
37
  spec.add_dependency "dry-configurable", "~> 1.0"
38
- spec.add_dependency "httparty", "~> 0.21.0"
39
38
  spec.add_dependency "zeitwerk", "~> 2.6"
40
39
 
41
40
  # Development dependencies
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: usgs-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Michnal
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-12-22 00:00:00.000000000 Z
11
+ date: 2026-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
- - !ruby/object:Gem::Dependency
28
- name: httparty
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 0.21.0
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 0.21.0
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: zeitwerk
43
29
  requirement: !ruby/object:Gem::Requirement