gemstash 2.3.0 → 2.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.md +34 -0
- data/lib/gemstash/logging.rb +5 -0
- data/lib/gemstash/man/gemstash-readme.7 +7 -7
- data/lib/gemstash/man/gemstash-readme.7.txt +6 -7
- data/lib/gemstash/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 912995cae585f3bc5fb9a4b1e1737fc9ef8afdfc47892d66e6360374dc37dc40
|
|
4
|
+
data.tar.gz: d6b0c0e60e4dba8ea22113b29f02f19817e79b1a83fb335ee3901a3840df5d85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef4f8e1a2e605b727ecb3209ae78e8f178e6b4967c3c98f431be973760cec50a6321cbac294817a201017cdc574ff6a849b02db8b6545cc87d938c4d3d7866ee
|
|
7
|
+
data.tar.gz: 4eea0daecfdb6686801d540f356db7673a87d3075b88fffb62ef6e730e55139e4cac7b287f456de4c07d2ff4caf2aebda3cc27f1818e5d8d3d4bd42a96f78de9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 2.3.2 (2023-09-14)
|
|
2
|
+
|
|
3
|
+
https://github.com/rubygems/gemstash/compare/v2.3.1...v2.3.2
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- Require a now-needed file for Puma 6. Thanks, [@ktreis][]! ([#362](https://github.com/rubygems/gemstash/pull/362), [@olleolleolle][])
|
|
8
|
+
|
|
9
|
+
## 2.3.1 (2023-09-05)
|
|
10
|
+
|
|
11
|
+
https://github.com/rubygems/gemstash/compare/v2.3.0...v2.3.1
|
|
12
|
+
|
|
13
|
+
### Fixes
|
|
14
|
+
|
|
15
|
+
- Reinstate Ruby Central in README. ([#353](https://github.com/rubygems/gemstash/pull/353), [@olleolleolle][])
|
|
16
|
+
- Implement Puma 5-required logger method `#sync` ([#355](https://github.com/rubygems/gemstash/pull/355), [@ball-hayden][])
|
|
17
|
+
|
|
18
|
+
## 2.3.0 (2023-08-30)
|
|
19
|
+
|
|
20
|
+
https://github.com/rubygems/gemstash/compare/v2.2.2...v2.3.0
|
|
21
|
+
|
|
22
|
+
### Changes
|
|
23
|
+
|
|
24
|
+
- Support Puma 6. ([#335](https://github.com/rubygems/gemstash/pull/335), [@MSP-Greg][])
|
|
25
|
+
- Make UpstreamSource intermediate specs from upstream. ([#337](https://github.com/rubygems/gemstash/pull/337), [@tedgarb][])
|
|
26
|
+
- Mention RubyCentral. ([#338](https://github.com/rubygems/gemstash/pull/338), [@adarsh][])
|
|
27
|
+
- Configure Dependabot. ([#341](https://github.com/rubygems/gemstash/pull/341), [@olleolleolle][])
|
|
28
|
+
|
|
1
29
|
## 2.2.2 (2023-03-03)
|
|
2
30
|
|
|
3
31
|
### Changes
|
|
@@ -270,3 +298,9 @@ Also thanks to: [@indirect][] and [@hsbt][] who fixed CI issues and lint warning
|
|
|
270
298
|
[@jebentier]: https://github.com/jebentier
|
|
271
299
|
[@kyrofa]: https://github.com/kyrofa
|
|
272
300
|
[@tonytonyjan]: https://github.com/tonytonyjan
|
|
301
|
+
[@MSP-Greg]: https://github.com/MSP-Greg
|
|
302
|
+
[@tedgarb]: https://github.com/tedgarb
|
|
303
|
+
[@adarsh]: https://github.com/adarsh
|
|
304
|
+
[@olleolleolle]: https://github.com/olleolleolle
|
|
305
|
+
[@ball-hayden]: https://github.com/ball-hayden
|
|
306
|
+
[@ktreis]: https://github.com/ktreis
|
data/lib/gemstash/logging.rb
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
require "logger"
|
|
4
4
|
|
|
5
5
|
begin
|
|
6
|
+
require "puma/detect"
|
|
6
7
|
require "puma/log_writer" # Puma 6
|
|
7
8
|
rescue LoadError
|
|
8
9
|
require "puma/events"
|
|
@@ -88,6 +89,10 @@ module Gemstash
|
|
|
88
89
|
|
|
89
90
|
def sync=(_value); end
|
|
90
91
|
|
|
92
|
+
def sync
|
|
93
|
+
false
|
|
94
|
+
end
|
|
95
|
+
|
|
91
96
|
def write(message)
|
|
92
97
|
Gemstash::Logging.logger.add(@level, message)
|
|
93
98
|
end
|
|
@@ -38,13 +38,13 @@ the same gems frequently?
|
|
|
38
38
|
Well, maybe you don\[cq]t need Gemstash\&...
|
|
39
39
|
yet.
|
|
40
40
|
.PP
|
|
41
|
-
Gemstash is maintained by Ruby
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Contribute today as an individual
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
41
|
+
Gemstash is maintained by Ruby Central (https://rubycentral.org/), a
|
|
42
|
+
non-profit committed to supporting the critical Ruby infrastructure you
|
|
43
|
+
rely on.
|
|
44
|
+
Contribute today as an individual, or even better, as a
|
|
45
|
+
company (https://rubycentral.org/#/portal/signup), and ensure that
|
|
46
|
+
Bundler, RubyGems, Gemstash, and other shared tooling is around for
|
|
47
|
+
years to come.
|
|
48
48
|
.SS Quickstart Guide
|
|
49
49
|
.SS Setup
|
|
50
50
|
.PP
|
|
@@ -20,13 +20,12 @@
|
|
|
20
20
|
Are you only using gems from https://rubygems.org, and don't bundle the
|
|
21
21
|
same gems frequently? Well, maybe you don't need Gemstash... yet.
|
|
22
22
|
|
|
23
|
-
Gemstash is
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
(https://
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
come.
|
|
23
|
+
Gemstash is maintained by Ruby Central (https://rubycentral.org/), a
|
|
24
|
+
non-profit committed to supporting the critical Ruby infrastructure you
|
|
25
|
+
rely on. Contribute today as an individual, or even better, as a com-
|
|
26
|
+
pany (https://rubycentral.org/#/portal/signup), and ensure that
|
|
27
|
+
Bundler, RubyGems, Gemstash, and other shared tooling is around for
|
|
28
|
+
years to come.
|
|
30
29
|
|
|
31
30
|
1mQuickstart Guide0m
|
|
32
31
|
1mSetup0m
|
data/lib/gemstash/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemstash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andre Arko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -54,16 +54,22 @@ dependencies:
|
|
|
54
54
|
name: faraday
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- - "
|
|
57
|
+
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: '1
|
|
59
|
+
version: '1'
|
|
60
|
+
- - "<"
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '3'
|
|
60
63
|
type: :runtime
|
|
61
64
|
prerelease: false
|
|
62
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
63
66
|
requirements:
|
|
64
|
-
- - "
|
|
67
|
+
- - ">="
|
|
65
68
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: '1
|
|
69
|
+
version: '1'
|
|
70
|
+
- - "<"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '3'
|
|
67
73
|
- !ruby/object:Gem::Dependency
|
|
68
74
|
name: faraday_middleware
|
|
69
75
|
requirement: !ruby/object:Gem::Requirement
|