tcr_revived 0.3.1 → 0.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: 51140e67f38cb4b9fe6ce292e6f952b9513e6123c2650fb1ca0300b06d58a478
4
- data.tar.gz: 4918a35b33ce8069ee8bc951c2f15f51e151c16a6295c808f869cf456d57793d
3
+ metadata.gz: d2b3dcd4ead8743a831b0fd33374fe2c875ed8b57557c34342ee0eb3ce0eb61a
4
+ data.tar.gz: e6615c052dcf12aea2470ec5766f9bd46f40c963507614cb61082e25702302f3
5
5
  SHA512:
6
- metadata.gz: c6c829722f042cf55a8599f670af6bfffc357f49d0d5969c148c984a481cb5ab185aff2821651c9bf974bbc1e0728c6918ca63f15e1dd68935983aef5b50b983
7
- data.tar.gz: 7ce4f0ff64522e95efcdb710e3ed302c5c9cfb18a482de74ea24e71d43dfbbafe35150ad8f94b6980ec8268f3a32484f7d3719e4e3520a0c756f351cec05f3bc
6
+ metadata.gz: 1fb716f044e077f442b2b8afe5d41ea095ec9727fe01d62dae09db0eb1ca4ac6a214bc9c667acee26d552fc92f987a93f5c344407a134a7df110c381b44eda69
7
+ data.tar.gz: f88d8482160a9cc4c5d33c650018cfb77fe41151e4e841d6e07bb5bd5c066bcc9db96566040cb3ed3e96ab287e690cbd6df8500082d4a1c206197add78611eef
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ inherit_gem:
2
2
  rubocop-espago: rubocop.yml
3
3
 
4
4
  AllCops:
5
- TargetRubyVersion: 2.6
5
+ TargetRubyVersion: 2.7
6
6
  Exclude:
7
7
  - 'spec/**/*'
8
8
 
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.2
1
+ 3.2.0
data/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ### Added
9
+
10
+ - Support for Ruby 3.2
11
+ - Test running script `bin/test`
12
+
13
+ ### Removed
14
+
15
+ - Support for Ruby 2.6
16
+
8
17
  ## [0.3.0] - 2022-10-18
9
18
 
10
19
  This is the initial version of this fork.
data/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  The original version of this gem seemed to have been unmaintained at least since 2018.
9
9
 
10
- This fork aims to bring support for Ruby 3.0 and 3.1. It should be a drop-in replacement.
10
+ This fork aims to bring support for Ruby 3.0, 3.1 and 3.2. It should be a drop-in replacement.
11
11
 
12
12
  ## Original docs
13
13
 
data/lib/tcr/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TCR
4
- VERSION = '0.3.1'
4
+ VERSION = '0.3.2'
5
5
  end
data/tcr_revived.gemspec CHANGED
@@ -28,7 +28,7 @@ require 'tcr/version'
28
28
  gem.bindir = 'exe'
29
29
  gem.executables = gem.files.grep(%r{\Aexe/}) { |f| ::File.basename(f) }
30
30
  gem.require_paths = ['lib']
31
- gem.required_ruby_version = '>= 2.6.10'
31
+ gem.required_ruby_version = '>= 2.7'
32
32
 
33
33
  gem.add_development_dependency 'debug'
34
34
  gem.add_development_dependency 'geminabox'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tcr_revived
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Forman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-10-20 00:00:00.000000000 Z
12
+ date: 2023-01-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debug
@@ -163,7 +163,6 @@ files:
163
163
  - ".ruby-version"
164
164
  - CHANGELOG.md
165
165
  - Gemfile
166
- - Gemfile.lock
167
166
  - LICENSE.txt
168
167
  - README.md
169
168
  - Rakefile
@@ -190,14 +189,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
190
189
  requirements:
191
190
  - - ">="
192
191
  - !ruby/object:Gem::Version
193
- version: 2.6.10
192
+ version: '2.7'
194
193
  required_rubygems_version: !ruby/object:Gem::Requirement
195
194
  requirements:
196
195
  - - ">="
197
196
  - !ruby/object:Gem::Version
198
197
  version: '0'
199
198
  requirements: []
200
- rubygems_version: 3.3.7
199
+ rubygems_version: 3.4.3
201
200
  signing_key:
202
201
  specification_version: 4
203
202
  summary: TCR is a lightweight VCR for TCP sockets.
data/Gemfile.lock DELETED
@@ -1,161 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- tcr_revived (0.3.1)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- ast (2.4.2)
10
- backport (1.2.0)
11
- benchmark (0.2.0)
12
- builder (3.2.4)
13
- bundler-audit (0.9.1)
14
- bundler (>= 1.2.0, < 3)
15
- thor (~> 1.0)
16
- debug (1.6.2)
17
- irb (>= 1.3.6)
18
- reline (>= 0.3.1)
19
- diff-lcs (1.5.0)
20
- digest (3.1.0)
21
- e2mmap (0.1.0)
22
- faraday (2.6.0)
23
- faraday-net_http (>= 2.0, < 3.1)
24
- ruby2_keywords (>= 0.0.4)
25
- faraday-net_http (3.0.1)
26
- geminabox (2.1.0)
27
- builder
28
- faraday (> 1.0, < 3.0)
29
- httpclient (>= 2.2.7)
30
- nesty
31
- reentrant_flock
32
- sinatra (~> 2.0)
33
- httpclient (2.8.3)
34
- io-console (0.5.11)
35
- irb (1.4.2)
36
- reline (>= 0.3.0)
37
- jaro_winkler (1.5.4)
38
- json (2.6.2)
39
- kramdown (2.4.0)
40
- rexml
41
- kramdown-parser-gfm (1.1.0)
42
- kramdown (~> 2.0)
43
- mail (2.7.1)
44
- mini_mime (>= 0.1.1)
45
- mime-types (2.99.3)
46
- mini_mime (1.1.2)
47
- mustermann (2.0.2)
48
- ruby2_keywords (~> 0.0.1)
49
- nesty (1.0.2)
50
- net-imap (0.2.3)
51
- digest
52
- net-protocol
53
- strscan
54
- net-ldap (0.17.1)
55
- net-pop (0.1.1)
56
- digest
57
- net-protocol
58
- timeout
59
- net-protocol (0.1.3)
60
- timeout
61
- net-smtp (0.3.1)
62
- digest
63
- net-protocol
64
- timeout
65
- nokogiri (1.13.8-arm64-darwin)
66
- racc (~> 1.4)
67
- parallel (1.22.1)
68
- parser (3.1.2.1)
69
- ast (~> 2.4.1)
70
- racc (1.6.0)
71
- rack (2.2.4)
72
- rack-protection (2.2.2)
73
- rack
74
- rainbow (3.1.1)
75
- rake (13.0.6)
76
- reentrant_flock (0.1.1)
77
- regexp_parser (2.6.0)
78
- reline (0.3.1)
79
- io-console (~> 0.5)
80
- reverse_markdown (2.1.1)
81
- nokogiri
82
- rexml (3.2.5)
83
- rspec (3.11.0)
84
- rspec-core (~> 3.11.0)
85
- rspec-expectations (~> 3.11.0)
86
- rspec-mocks (~> 3.11.0)
87
- rspec-core (3.11.0)
88
- rspec-support (~> 3.11.0)
89
- rspec-expectations (3.11.1)
90
- diff-lcs (>= 1.2.0, < 2.0)
91
- rspec-support (~> 3.11.0)
92
- rspec-mocks (3.11.1)
93
- diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.11.0)
95
- rspec-support (3.11.1)
96
- rubocop (1.36.0)
97
- json (~> 2.3)
98
- parallel (~> 1.10)
99
- parser (>= 3.1.2.1)
100
- rainbow (>= 2.2.2, < 4.0)
101
- regexp_parser (>= 1.8, < 3.0)
102
- rexml (>= 3.2.5, < 4.0)
103
- rubocop-ast (>= 1.20.1, < 2.0)
104
- ruby-progressbar (~> 1.7)
105
- unicode-display_width (>= 1.4.0, < 3.0)
106
- rubocop-ast (1.21.0)
107
- parser (>= 3.1.1.0)
108
- rubocop-espago (1.0.0)
109
- rubocop
110
- ruby-progressbar (1.11.0)
111
- ruby2_keywords (0.0.5)
112
- sinatra (2.2.2)
113
- mustermann (~> 2.0)
114
- rack (~> 2.2)
115
- rack-protection (= 2.2.2)
116
- tilt (~> 2.0)
117
- solargraph (0.47.2)
118
- backport (~> 1.2)
119
- benchmark
120
- bundler (>= 1.17.2)
121
- diff-lcs (~> 1.4)
122
- e2mmap
123
- jaro_winkler (~> 1.5)
124
- kramdown (~> 2.3)
125
- kramdown-parser-gfm (~> 1.1)
126
- parser (~> 3.0)
127
- reverse_markdown (>= 1.0.5, < 3)
128
- rubocop (>= 0.52)
129
- thor (~> 1.0)
130
- tilt (~> 2.0)
131
- yard (~> 0.9, >= 0.9.24)
132
- strscan (3.0.4)
133
- thor (1.2.1)
134
- tilt (2.0.11)
135
- timeout (0.3.0)
136
- unicode-display_width (2.3.0)
137
- webrick (1.7.0)
138
- yard (0.9.28)
139
- webrick (~> 1.7.0)
140
-
141
- PLATFORMS
142
- arm64-darwin-20
143
-
144
- DEPENDENCIES
145
- bundler-audit
146
- debug
147
- geminabox
148
- mail
149
- mime-types (~> 2.0)
150
- net-imap
151
- net-ldap
152
- net-pop
153
- net-smtp
154
- rake
155
- rspec
156
- rubocop-espago
157
- solargraph
158
- tcr_revived!
159
-
160
- BUNDLED WITH
161
- 2.3.13