http.rb 0.13.1 → 0.13.2

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: 1dde44381215bd0f99a698070bbf0a95ca4178fa8a796ed9de6ca7114d9f4cf1
4
- data.tar.gz: 9c2186e4d466a1fa2eedb8ad0c305b1d631e22453c0275ac1309d2b7cafedaa6
3
+ metadata.gz: ae541e50094a51ccb63d737279a67ce0ae4a6a0ee55fe51a05e091da02e170e9
4
+ data.tar.gz: b1c865b1edd6c6ae58711af7502d10e69da3c31d41d1655438d8bb7c83778bf4
5
5
  SHA512:
6
- metadata.gz: aebcba1e71b81d0c8f02b51fa88c1655f752a37a8ef987d16a53e2ba2459d29a17757225703de090c7beb9d5e938e08224350b4dd844943252811c9c8c339228
7
- data.tar.gz: c5110f64b0918ffb3e855b834af2177e99c3efcec4b57ab217c0536fa522359755204ad2a21b24ce62ffbe99d71695e56f9cbc9a48e29dae4e46abf81fff47a9
6
+ metadata.gz: 32a009dc748bef0e9aecf8b225e9bbb8f6bc991f3ffccaa41cb1c43fea085808fcdfb26abed1aa1174ab7332bb297ae3e6202398a8fc8ea20eee9da221e65f21
7
+ data.tar.gz: 9ddbec00fc0efcb277bf673ba390a13ec76c449db0f5f5189cc6129fdaddf465624fb75e3a0ae7bc47e3e7e423bc5fae42307b83fd50764d59847a5495eda2aa
data/CHANGELOG.txt ADDED
@@ -0,0 +1,37 @@
1
+ # 202503030
2
+ # 0.13.2: Change repo name to match gem name (/HTTP/http.rb/); + Use HTTP::VERSION; /require/require_relative/
3
+ 1. ~ README.md: /HTTP/http.rb/, /HTTP.rb/http.rb/
4
+ 2. + HTTP::VERSION
5
+ 3. ~ http.rb.gemspec: Use HTTP::VERSION.
6
+ 4. ~ HTTP.get: /require/require_relative/
7
+ 5. ~ HTTP.post: /require/require_relative/
8
+
9
+ # 20250304
10
+ # 0.13.1: /HTTP.rb.gemspec/http.rb.gemspec/
11
+ 1. /HTTP.rb.gemspec/http.rb.gemspec/ (Wonder no more!)
12
+
13
+ # 20250304
14
+ # 0.13.0: Extend Net::HTTPResponse to allow use of predicate methods for statuses and optionally prevent redirections.
15
+ 1. + lib/Net/HTTPResponse/StatusPredicates.rb
16
+ 2. ~ HTTP/get.rb: + require 'Net/HTTPResponse/StatusPredicates'
17
+ 3. ~ HTTP/post.rb: + require 'Net/HTTPResponse/StatusPredicates'
18
+ 4. ~ HTTP.get(): Allow redirects to not be followed with no_redirect option.
19
+ 5. ~ HTTP.post(): Allow redirects to not be followed with no_redirect option.
20
+ 6. ~ spec/HTTP/get_spec.rb: Add success? and redirection? expectations throughout as is correct.
21
+ 7. ~ spec/HTTP/post_spec.rb: Add success? and redirection? expectations throughout as is correct.
22
+ 8. ~ README.md: Demonstrate usage of response status predicates.
23
+ 9. ~ README.md: Demonstrate usage of no_redirect option.
24
+ 10. ~ http.rb.gemspec: /0.12.1/0.13.0/
25
+ 11. /http.rb.gemspec/HTTP.rb.gemspec/ (I wonder if that's going to cause issues for rubygems.org...)
26
+ 12. ~ CHANGELOG.txt
27
+
28
+ # 20250207
29
+ # 0.12.1: Correctly handle POST'ing JSON data.
30
+ 1. ~ HTTP.post(): Check if the Content-Type is 'application/json' and assign the body JSON data otherwise assign the supplied hash to the form data.
31
+ 2. ~ spec/HTTP/post_spec.rb: + spec for when a request is being made with JSON data
32
+ 3. ~ spec/HTTP/post_spec.rb: Assign a headers variable to make the spec more readable.
33
+ 4. ~ spec/HTTP/post_spec.rb: Remove spaces between outer-most and second outer-most blocks.
34
+ 5. ~ spec/HTTP/get_spec.rb: Remove spaces between outer-most and second outer-most blocks.
35
+ 6. ~ README.md: Add # With JSON data section
36
+ 7. ~ http.rb.gemspec: /0.12.0/0.12.1/
37
+ 8. + CHANGELOG.txt
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # HTTP
1
+ # http.rb
2
2
 
3
3
  ## Description
4
4
 
@@ -19,15 +19,17 @@ Perhaps someone will appreciate its relative simplicity, since it is much smalle
19
19
 
20
20
  Add this line to your application's Gemfile:
21
21
 
22
- gem 'HTTP.rb'
22
+ gem 'http.rb'
23
+
23
24
 
24
25
  And then execute:
25
26
 
26
27
  $ bundle
27
28
 
29
+
28
30
  Or install it yourself as:
29
31
 
30
- $ gem install HTTP.rb
32
+ $ gem install http.rb
31
33
 
32
34
 
33
35
  ## Usage
data/http.rb.gemspec CHANGED
@@ -1,7 +1,9 @@
1
+ require_relative './lib/HTTP/VERSION'
2
+
1
3
  Gem::Specification.new do |s|
2
4
  s.name = 'http.rb'
3
- s.version = '0.13.1'
4
- s.date = '2025-03-04'
5
+ s.version = HTTP::VERSION
6
+ s.date = '2025-03-30'
5
7
 
6
8
  s.summary = "HTTP made easy."
7
9
  s.description = "HTTP is the simplest HTTP mezzanine library for Ruby. Supply a URI, \
@@ -12,6 +14,7 @@ Gem::Specification.new do |s|
12
14
  s.homepage = "http://github.com/thoran/HTTP"
13
15
 
14
16
  s.files = [
17
+ 'CHANGELOG.txt',
15
18
  'Gemfile',
16
19
  'README.md',
17
20
  'http.rb.gemspec',
@@ -0,0 +1,6 @@
1
+ # HTTP/VERSION.rb
2
+ # HTTP::VERSION
3
+
4
+ module HTTP
5
+ VERSION = '0.13.2'
6
+ end
data/lib/HTTP/get.rb CHANGED
@@ -5,14 +5,11 @@ require 'net/http'
5
5
  require 'openssl'
6
6
  require 'uri'
7
7
 
8
- lib_dir = File.expand_path(File.join(__FILE__, '..', '..'))
9
- $LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
10
-
11
- require 'Hash/x_www_form_urlencode'
12
- require 'Net/HTTP/set_options'
13
- require 'Net/HTTP/Get/set_headers'
14
- require 'Net/HTTPResponse/StatusPredicates'
15
- require 'URI/Generic/use_sslQ'
8
+ require_relative '../Hash/x_www_form_urlencode'
9
+ require_relative '../Net/HTTP/set_options'
10
+ require_relative '../Net/HTTP/Get/set_headers'
11
+ require_relative '../Net/HTTPResponse/StatusPredicates'
12
+ require_relative '../URI/Generic/use_sslQ'
16
13
 
17
14
  module HTTP
18
15
 
data/lib/HTTP/post.rb CHANGED
@@ -6,14 +6,11 @@ require 'net/http'
6
6
  require 'openssl'
7
7
  require 'uri'
8
8
 
9
- lib_dir = File.expand_path(File.join(__FILE__, '..', '..'))
10
- $LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
11
-
12
- require 'HTTP/get'
13
- require 'Net/HTTP/set_options'
14
- require 'Net/HTTP/Post/set_headers'
15
- require 'Net/HTTPResponse/StatusPredicates'
16
- require 'URI/Generic/use_sslQ'
9
+ require_relative '../HTTP/get'
10
+ require_relative '../Net/HTTP/set_options'
11
+ require_relative '../Net/HTTP/Post/set_headers'
12
+ require_relative '../Net/HTTPResponse/StatusPredicates'
13
+ require_relative '../URI/Generic/use_sslQ'
17
14
 
18
15
  module HTTP
19
16
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.1
4
+ version: 0.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-04 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: HTTP is the simplest HTTP mezzanine library for Ruby. Supply a URI, some
13
13
  optional query arguments, some optional headers, and some Net::HTTP options,
@@ -17,10 +17,12 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - CHANGELOG.txt
20
21
  - Gemfile
21
22
  - README.md
22
23
  - http.rb.gemspec
23
24
  - lib/HTTP.rb
25
+ - lib/HTTP/VERSION.rb
24
26
  - lib/HTTP/get.rb
25
27
  - lib/HTTP/post.rb
26
28
  - lib/Hash/x_www_form_urlencode.rb
@@ -50,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
52
  - !ruby/object:Gem::Version
51
53
  version: '0'
52
54
  requirements: []
53
- rubygems_version: 3.6.5
55
+ rubygems_version: 3.6.6
54
56
  specification_version: 4
55
57
  summary: HTTP made easy.
56
58
  test_files: []