Skip to content

Commit 25690d2

Browse files
committed
Fix typo, bump 0.1.2
1 parent 51a0c6f commit 25690d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/yabeda/http_requests.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module Yabeda
1010
module HttpRequests
1111
SNIFFER_STORAGE_SIZE = 0
1212

13+
# rubocop: disable Metrics/BlockLength
1314
Yabeda.configure do
1415
group :http
1516

@@ -37,10 +38,11 @@ module HttpRequests
3738
c.enabled = true
3839
c.store = { capacity: SNIFFER_STORAGE_SIZE }
3940
c.middleware do |chain|
40-
chain.remove(Sniffer::Middleware::Logger)
41+
chain.remove(::Sniffer::Middleware::Logger)
4142
chain.add(Yabeda::HttpRequests::Sniffer)
4243
end
4344
end
4445
end
46+
# rubocop: enable Metrics/BlockLength
4547
end
4648
end

lib/yabeda/http_requests/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Yabeda
44
module HttpRequests
5-
VERSION = '0.1.1'
5+
VERSION = '0.1.2'
66
end
77
end

0 commit comments

Comments
 (0)