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 +4 -4
- data/CHANGELOG +8 -0
- data/http.rb.gemspec +3 -3
- data/lib/HTTP/VERSION.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9b1a14689933d1d7a46f7ebf6619e5807369ed65455d6d0692f170689054c73
|
|
4
|
+
data.tar.gz: 4d2926d31cbf21835ee921f07561a7a3f895b468ffac5ed785d4229daef63e13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
'
|
|
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
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.
|
|
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.
|
|
143
|
+
rubygems_version: 4.0.18
|
|
144
144
|
specification_version: 4
|
|
145
145
|
summary: HTTP made easy.
|
|
146
146
|
test_files: []
|