http.rb 1.3.1 → 1.3.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: 9c256751d9a000319b5c01326141fab71034662d85cf2393e47170ef73ff3272
4
- data.tar.gz: e707ce4ff95cab59c75f66a2d29100483da32ad9c3df3e384455be00a202bf2b
3
+ metadata.gz: f9b1a14689933d1d7a46f7ebf6619e5807369ed65455d6d0692f170689054c73
4
+ data.tar.gz: 4d2926d31cbf21835ee921f07561a7a3f895b468ffac5ed785d4229daef63e13
5
5
  SHA512:
6
- metadata.gz: f9b47e3129188137bb30018f85cee74b8d2d8f1daa42a00b0aabf68133286416432f53f107ffe5c8370e6184875f29cef3ffdc48fa113a3bdce8ca2a03cbbb8f
7
- data.tar.gz: 63edff9c0ec8b79d348de5a6a49737a7683fd74958dc2d33ce99433fc170010600e2477957ae355c6426fc8c725aa6b4a6fee2134136292eb2d7be942e70c94a
6
+ metadata.gz: df0b85c36dac9788b1c84bae13536a49e4444dd6953b2a512121b38261137ef3d99328cdde7ab202013246846b7271c4cd888b3ee049754f562cbebb1dbc7dd6
7
+ data.tar.gz: 07ff77f55a32f39134cf410de9eafd92deb5359d5b8398fde310500c1e024464001eef150eef9aee140922bedfedd6d6c165394de98540826f60cea5d43ada9d
data/CHANGELOG CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 20260819
4
+
5
+ 1.3.2: ~ http.rb.gemspec: spec.files reordered, the globs first.
6
+
7
+ 1. ~ http.rb.gemspec: spec.files reordered, the two Dir globs first and the loose files alphabetically after them, as moby and measurand have it. The globs are what the gem is and the rest is paperwork, so adding a file to the paperwork now never disturbs them. This gemspec had been pinned first with the globs last, which namo shared and impuri left at its 0.12.1. The same 35 files ship, in the same gem; only the order in the source changes.
8
+ 2. ~ HTTP::VERSION: /1.3.1/1.3.2/
9
+
10
+
3
11
  ## 20260713
4
12
 
5
13
  1.3.1: Use Thoran Namespace for URL-encoding extensions.
data/http.rb.gemspec CHANGED
@@ -24,14 +24,14 @@ Gem::Specification.new do |spec|
24
24
  spec.require_paths = ['lib']
25
25
 
26
26
  spec.files = [
27
- 'http.rb.gemspec',
27
+ Dir['lib/**/*.rb'],
28
+ Dir['test/**/*.rb'],
28
29
  'CHANGELOG',
29
30
  'Gemfile',
31
+ 'http.rb.gemspec',
30
32
  'LICENSE',
31
33
  'Rakefile',
32
34
  'README.md',
33
- Dir['lib/**/*.rb'],
34
- Dir['test/**/*.rb'],
35
35
  ].flatten
36
36
 
37
37
  spec.development_dependencies = [
data/lib/HTTP/VERSION.rb CHANGED
@@ -2,5 +2,5 @@
2
2
  # HTTP::VERSION
3
3
 
4
4
  module HTTP
5
- VERSION = '1.3.1'
5
+ VERSION = '1.3.2'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
140
  - !ruby/object:Gem::Version
141
141
  version: '0'
142
142
  requirements: []
143
- rubygems_version: 4.0.16
143
+ rubygems_version: 4.0.18
144
144
  specification_version: 4
145
145
  summary: HTTP made easy.
146
146
  test_files: []