minitest_httplog 0.2.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6ff02c4de4661d1a5d5df25a5127ce92295e7a222ed0a73ab894e594b995326b
4
+ data.tar.gz: 9b2a45fb2162d25a64c00d6decc6aaee652fda88fe6258d01c5f9641d06f8d81
5
+ SHA512:
6
+ metadata.gz: bc735417440a196a532a4ddb33e8cd6b83b8348b8f30db3eb5c192b73a632511cd8951c6f580f19549a54cfdd069e4b16f360c5582255eedd2d16cacf5ddebc5
7
+ data.tar.gz: 39ba57880e054283350301d6eeb141b46351024c43b635fdac4de3c4e5a80efa8a6f8f860b309cc376ca16bdf7f74a05f88a8197e638bd3a6ea1c700915e877a
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ *.gem
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.6
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at guilherme.stefanelli@cloudwalk.io. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in minitest_httplog.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,215 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ minitest_httplog (0.1.0)
5
+ httplog
6
+ minitest
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (7.1.3.4)
12
+ actionpack (= 7.1.3.4)
13
+ activesupport (= 7.1.3.4)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ zeitwerk (~> 2.6)
17
+ actionmailbox (7.1.3.4)
18
+ actionpack (= 7.1.3.4)
19
+ activejob (= 7.1.3.4)
20
+ activerecord (= 7.1.3.4)
21
+ activestorage (= 7.1.3.4)
22
+ activesupport (= 7.1.3.4)
23
+ mail (>= 2.7.1)
24
+ net-imap
25
+ net-pop
26
+ net-smtp
27
+ actionmailer (7.1.3.4)
28
+ actionpack (= 7.1.3.4)
29
+ actionview (= 7.1.3.4)
30
+ activejob (= 7.1.3.4)
31
+ activesupport (= 7.1.3.4)
32
+ mail (~> 2.5, >= 2.5.4)
33
+ net-imap
34
+ net-pop
35
+ net-smtp
36
+ rails-dom-testing (~> 2.2)
37
+ actionpack (7.1.3.4)
38
+ actionview (= 7.1.3.4)
39
+ activesupport (= 7.1.3.4)
40
+ nokogiri (>= 1.8.5)
41
+ racc
42
+ rack (>= 2.2.4)
43
+ rack-session (>= 1.0.1)
44
+ rack-test (>= 0.6.3)
45
+ rails-dom-testing (~> 2.2)
46
+ rails-html-sanitizer (~> 1.6)
47
+ actiontext (7.1.3.4)
48
+ actionpack (= 7.1.3.4)
49
+ activerecord (= 7.1.3.4)
50
+ activestorage (= 7.1.3.4)
51
+ activesupport (= 7.1.3.4)
52
+ globalid (>= 0.6.0)
53
+ nokogiri (>= 1.8.5)
54
+ actionview (7.1.3.4)
55
+ activesupport (= 7.1.3.4)
56
+ builder (~> 3.1)
57
+ erubi (~> 1.11)
58
+ rails-dom-testing (~> 2.2)
59
+ rails-html-sanitizer (~> 1.6)
60
+ activejob (7.1.3.4)
61
+ activesupport (= 7.1.3.4)
62
+ globalid (>= 0.3.6)
63
+ activemodel (7.1.3.4)
64
+ activesupport (= 7.1.3.4)
65
+ activerecord (7.1.3.4)
66
+ activemodel (= 7.1.3.4)
67
+ activesupport (= 7.1.3.4)
68
+ timeout (>= 0.4.0)
69
+ activestorage (7.1.3.4)
70
+ actionpack (= 7.1.3.4)
71
+ activejob (= 7.1.3.4)
72
+ activerecord (= 7.1.3.4)
73
+ activesupport (= 7.1.3.4)
74
+ marcel (~> 1.0)
75
+ activesupport (7.1.3.4)
76
+ base64
77
+ bigdecimal
78
+ concurrent-ruby (~> 1.0, >= 1.0.2)
79
+ connection_pool (>= 2.2.5)
80
+ drb
81
+ i18n (>= 1.6, < 2)
82
+ minitest (>= 5.1)
83
+ mutex_m
84
+ tzinfo (~> 2.0)
85
+ addressable (2.8.7)
86
+ public_suffix (>= 2.0.2, < 7.0)
87
+ base64 (0.2.0)
88
+ bigdecimal (3.1.8)
89
+ builder (3.3.0)
90
+ byebug (11.1.3)
91
+ concurrent-ruby (1.3.3)
92
+ connection_pool (2.4.1)
93
+ crack (1.0.0)
94
+ bigdecimal
95
+ rexml
96
+ crass (1.0.6)
97
+ date (3.3.4)
98
+ drb (2.2.1)
99
+ erubi (1.13.0)
100
+ globalid (1.2.1)
101
+ activesupport (>= 6.1)
102
+ hashdiff (1.1.0)
103
+ httplog (1.7.0)
104
+ rack (>= 2.0)
105
+ rainbow (>= 2.0.0)
106
+ i18n (1.14.5)
107
+ concurrent-ruby (~> 1.0)
108
+ io-console (0.7.2)
109
+ irb (1.14.0)
110
+ rdoc (>= 4.0.0)
111
+ reline (>= 0.4.2)
112
+ loofah (2.22.0)
113
+ crass (~> 1.0.2)
114
+ nokogiri (>= 1.12.0)
115
+ mail (2.8.1)
116
+ mini_mime (>= 0.1.1)
117
+ net-imap
118
+ net-pop
119
+ net-smtp
120
+ marcel (1.0.4)
121
+ mini_mime (1.1.5)
122
+ mini_portile2 (2.8.7)
123
+ minitest (5.24.1)
124
+ mutex_m (0.2.0)
125
+ net-imap (0.4.14)
126
+ date
127
+ net-protocol
128
+ net-pop (0.1.2)
129
+ net-protocol
130
+ net-protocol (0.2.2)
131
+ timeout
132
+ net-smtp (0.5.0)
133
+ net-protocol
134
+ nio4r (2.7.3)
135
+ nokogiri (1.15.6)
136
+ mini_portile2 (~> 2.8.2)
137
+ racc (~> 1.4)
138
+ psych (5.1.2)
139
+ stringio
140
+ public_suffix (5.1.1)
141
+ racc (1.8.0)
142
+ rack (3.1.7)
143
+ rack-session (2.0.0)
144
+ rack (>= 3.0.0)
145
+ rack-test (2.1.0)
146
+ rack (>= 1.3)
147
+ rackup (2.1.0)
148
+ rack (>= 3)
149
+ webrick (~> 1.8)
150
+ rails (7.1.3.4)
151
+ actioncable (= 7.1.3.4)
152
+ actionmailbox (= 7.1.3.4)
153
+ actionmailer (= 7.1.3.4)
154
+ actionpack (= 7.1.3.4)
155
+ actiontext (= 7.1.3.4)
156
+ actionview (= 7.1.3.4)
157
+ activejob (= 7.1.3.4)
158
+ activemodel (= 7.1.3.4)
159
+ activerecord (= 7.1.3.4)
160
+ activestorage (= 7.1.3.4)
161
+ activesupport (= 7.1.3.4)
162
+ bundler (>= 1.15.0)
163
+ railties (= 7.1.3.4)
164
+ rails-dom-testing (2.2.0)
165
+ activesupport (>= 5.0.0)
166
+ minitest
167
+ nokogiri (>= 1.6)
168
+ rails-html-sanitizer (1.6.0)
169
+ loofah (~> 2.21)
170
+ nokogiri (~> 1.14)
171
+ railties (7.1.3.4)
172
+ actionpack (= 7.1.3.4)
173
+ activesupport (= 7.1.3.4)
174
+ irb
175
+ rackup (>= 1.0.0)
176
+ rake (>= 12.2)
177
+ thor (~> 1.0, >= 1.2.2)
178
+ zeitwerk (~> 2.6)
179
+ rainbow (3.1.1)
180
+ rake (12.3.3)
181
+ rdoc (6.7.0)
182
+ psych (>= 4.0.0)
183
+ reline (0.5.9)
184
+ io-console (~> 0.5)
185
+ rexml (3.3.2)
186
+ strscan
187
+ stringio (3.1.1)
188
+ strscan (3.1.0)
189
+ thor (1.3.1)
190
+ timeout (0.4.1)
191
+ tzinfo (2.0.6)
192
+ concurrent-ruby (~> 1.0)
193
+ webmock (3.23.1)
194
+ addressable (>= 2.8.0)
195
+ crack (>= 0.3.2)
196
+ hashdiff (>= 0.4.0, < 2.0.0)
197
+ webrick (1.8.1)
198
+ websocket-driver (0.7.6)
199
+ websocket-extensions (>= 0.1.0)
200
+ websocket-extensions (0.1.5)
201
+ zeitwerk (2.6.17)
202
+
203
+ PLATFORMS
204
+ ruby
205
+
206
+ DEPENDENCIES
207
+ byebug
208
+ minitest_httplog!
209
+ rack (>= 2.0)
210
+ rails (>= 6.0)
211
+ rake (>= 12.0)
212
+ webmock
213
+
214
+ BUNDLED WITH
215
+ 2.1.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Guilherme Stefanelli
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # MinitestHttplog
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/minitest_httplog`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'minitest_httplog'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install minitest_httplog
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/minitest_httplog. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/minitest_httplog/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the MinitestHttplog project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/minitest_httplog/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "minitest_httplog"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module MinitestHttplog
2
+ VERSION = "0.2.0"
3
+ end
@@ -0,0 +1,80 @@
1
+ require 'httplog'
2
+ require 'minitest'
3
+
4
+ module HttpLogMinitest
5
+ class << self
6
+ attr_accessor :current_test
7
+
8
+ def init
9
+ HttpLog.configure do |config|
10
+ config.logger = create_logger_decorator(config.logger)
11
+ end
12
+ end
13
+
14
+ def create_logger_decorator(logger)
15
+ Class.new do
16
+ def initialize(logger)
17
+ @logger = logger
18
+ end
19
+
20
+ def add(severity, message = nil, progname = nil, &block)
21
+ process_message(message)
22
+ @logger.add(severity, message, progname, &block)
23
+ end
24
+
25
+ def log(severity, message = nil, progname = nil, &block)
26
+ process_message(message)
27
+ @logger.log(severity, message, progname, &block)
28
+ end
29
+
30
+ def method_missing(method, *args, &block)
31
+ @logger.send(method, *args, &block)
32
+ end
33
+
34
+ def respond_to_missing?(method, include_private = false)
35
+ @logger.respond_to?(method, include_private) || super
36
+ end
37
+
38
+ private
39
+
40
+ def process_message(message)
41
+ if message && message.match(/\[httplog\]/)
42
+ uri = extract_uri(message)
43
+ method = extract_method(message)
44
+
45
+ if uri && method
46
+ full_message = "Unmocked HTTP request detected: #{method} #{uri} during test: #{HttpLogMinitest.current_test}"
47
+
48
+ raise Minitest::Assertion, full_message
49
+ end
50
+ end
51
+ end
52
+
53
+ def extract_uri(message)
54
+ match = message.match(/(http[s]?:\/\/[^\s]+)/)
55
+ match ? match[1] : nil
56
+ end
57
+
58
+ def extract_method(message)
59
+ match = message.match(/Sending: ([A-Z]+)/)
60
+ match ? match[1] : nil
61
+ end
62
+ end.new(logger)
63
+ end
64
+ end
65
+ end
66
+
67
+ HttpLogMinitest.init
68
+
69
+ module Minitest
70
+ class Test
71
+ alias_method :run_without_httplog, :run
72
+
73
+ def run(*args, &block)
74
+ HttpLogMinitest.current_test = self.name
75
+ result = run_without_httplog(*args, &block)
76
+ HttpLogMinitest.current_test = nil
77
+ result
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,39 @@
1
+ require_relative 'lib/minitest_httplog/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "minitest_httplog"
5
+ spec.version = MinitestHttplog::VERSION
6
+ spec.authors = ["Guilherme Stefanelli"]
7
+ spec.email = ["guinaldister@gmail.com"]
8
+
9
+ spec.summary = %q{Detect unmocked HTTP requests in your tests}
10
+ spec.description = %q{Detect unmocked HTTP requests in your tests}
11
+ spec.homepage = "https://github.com/guinaldi/minitest_httplog"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/guinaldi/minitest_httplog"
19
+ spec.metadata["changelog_uri"] = "https://github.com/guinaldi/minitest_httplog/changelog"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ # Dependencies
31
+ spec.add_dependency "httplog"
32
+ spec.add_dependency "minitest"
33
+ # Development Dependencies
34
+ spec.add_development_dependency "rails", ">= 6.0"
35
+ spec.add_development_dependency "rack", ">= 2.0"
36
+ spec.add_development_dependency "rake", ">= 12.0"
37
+ spec.add_development_dependency "webmock"
38
+ spec.add_development_dependency "byebug"
39
+ end
metadata ADDED
@@ -0,0 +1,158 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: minitest_httplog
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Guilherme Stefanelli
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httplog
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '6.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '6.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rack
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: webmock
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: byebug
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Detect unmocked HTTP requests in your tests
112
+ email:
113
+ - guinaldister@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - ".travis.yml"
120
+ - CODE_OF_CONDUCT.md
121
+ - Gemfile
122
+ - Gemfile.lock
123
+ - LICENSE.txt
124
+ - README.md
125
+ - Rakefile
126
+ - bin/console
127
+ - bin/setup
128
+ - lib/minitest_httplog.rb
129
+ - lib/minitest_httplog/version.rb
130
+ - minitest_httplog.gemspec
131
+ homepage: https://github.com/guinaldi/minitest_httplog
132
+ licenses:
133
+ - MIT
134
+ metadata:
135
+ allowed_push_host: https://rubygems.org
136
+ homepage_uri: https://github.com/guinaldi/minitest_httplog
137
+ source_code_uri: https://github.com/guinaldi/minitest_httplog
138
+ changelog_uri: https://github.com/guinaldi/minitest_httplog/changelog
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ version: 2.3.0
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ requirements: []
154
+ rubygems_version: 3.1.6
155
+ signing_key:
156
+ specification_version: 4
157
+ summary: Detect unmocked HTTP requests in your tests
158
+ test_files: []