simple_http_service 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/simple_http_service/version.rb +1 -1
- data/simple_http_service.gemspec +7 -5
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f921a86bf463f0007a05b8e0bf295ba99e2bb3c49a887975c8eb4c32309cc33e
|
4
|
+
data.tar.gz: 1c828b59b5396cad7aa35e0a6e9e82736be1cec54c0452b59283fed0bde65909
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9efa7e23447c5ae02c55fc3e2f6a328c161884849ca2d11a4a5255e14b3f796308e18625ec20b72533f7f7efb96fe6db011d2fa8b932e6fe3fd8529ee9571e3d
|
7
|
+
data.tar.gz: 77afedbc28b2a36a01d4c99c7fbd980048d0fd643448926cf34d0246b881010c5973cfc31101c99be2e87392efdc132cb4cfb529fe731e1616b4bd8b04521cfe
|
data/simple_http_service.gemspec
CHANGED
@@ -16,11 +16,13 @@ Gem::Specification.new do |spec|
|
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
17
17
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
18
18
|
if spec.respond_to?(:metadata)
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
spec.metadata = {
|
20
|
+
'homepage_uri' => spec.homepage,
|
21
|
+
'source_code_uri' => "https://github.com/gklsan/simple_http_service",
|
22
|
+
'changelog_uri' => "https://github.com/gklsan/simple_http_service/releases",
|
23
|
+
'bug_tracker_uri' => "https://github.com/gklsan/simple_http_service/issues",
|
24
|
+
'documentation_uri' => "https://rubydoc.info/github/gklsan/simple_http_service"
|
25
|
+
}
|
24
26
|
else
|
25
27
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
26
28
|
"public gem pushes."
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_http_service
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gokul (gklsan)
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-http
|
@@ -113,8 +113,10 @@ licenses:
|
|
113
113
|
metadata:
|
114
114
|
homepage_uri: https://github.com/gklsan/simple_http_service
|
115
115
|
source_code_uri: https://github.com/gklsan/simple_http_service
|
116
|
-
changelog_uri: https://github.com/gklsan/simple_http_service
|
117
|
-
|
116
|
+
changelog_uri: https://github.com/gklsan/simple_http_service/releases
|
117
|
+
bug_tracker_uri: https://github.com/gklsan/simple_http_service/issues
|
118
|
+
documentation_uri: https://rubydoc.info/github/gklsan/simple_http_service
|
119
|
+
post_install_message:
|
118
120
|
rdoc_options: []
|
119
121
|
require_paths:
|
120
122
|
- lib
|
@@ -129,8 +131,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
131
|
- !ruby/object:Gem::Version
|
130
132
|
version: '0'
|
131
133
|
requirements: []
|
132
|
-
rubygems_version: 3.
|
133
|
-
signing_key:
|
134
|
+
rubygems_version: 3.0.3.1
|
135
|
+
signing_key:
|
134
136
|
specification_version: 4
|
135
137
|
summary: SimpleHttpService is a simple Ruby library to make HTTP requests with customizable
|
136
138
|
options for headers, timeouts, and retries. It provides a convenient way to create
|