File tree Expand file tree Collapse file tree 5 files changed +86
-3
lines changed Expand file tree Collapse file tree 5 files changed +86
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Test External
2+
3+ on : [push, pull_request]
4+
5+ permissions :
6+ contents : read
7+
8+ env :
9+ CONSOLE_OUTPUT : XTerm
10+
11+ jobs :
12+ test :
13+ name : ${{matrix.ruby}} on ${{matrix.os}}
14+ runs-on : ${{matrix.os}}-latest
15+
16+ strategy :
17+ matrix :
18+ os :
19+ - ubuntu
20+ - macos
21+
22+ ruby :
23+ - " 3.1"
24+ - " 3.2"
25+ - " 3.3"
26+
27+ steps :
28+ - uses : actions/checkout@v4
29+ - uses : ruby/setup-ruby@v1
30+ with :
31+ ruby-version : ${{matrix.ruby}}
32+ bundler-cache : true
33+
34+ - name : Run RuboCop
35+ timeout-minutes : 10
36+ run : bundle exec rubocop
Original file line number Diff line number Diff line change 1+ AllCops :
2+ DisabledByDefault : true
3+
4+ Layout/IndentationStyle :
5+ Enabled : true
6+ EnforcedStyle : tabs
7+
8+ Layout/InitialIndentation :
9+ Enabled : true
10+
11+ Layout/IndentationWidth :
12+ Enabled : true
13+ Width : 1
14+
15+ Layout/IndentationConsistency :
16+ Enabled : true
17+ EnforcedStyle : normal
18+
19+ Layout/EndAlignment :
20+ Enabled : true
21+ EnforcedStyleAlignWith : start_of_line
22+
23+ Layout/BeginEndAlignment :
24+ Enabled : true
25+ EnforcedStyleAlignWith : start_of_line
26+
27+ Layout/ElseAlignment :
28+ Enabled : true
29+
30+ Layout/DefEndAlignment :
31+ Enabled : true
32+
33+ Layout/CaseIndentation :
34+ Enabled : true
35+
36+ Layout/CommentIndentation :
37+ Enabled : true
38+
39+ Layout/EmptyLinesAroundClassBody :
40+ Enabled : true
41+
42+ Layout/EmptyLinesAroundModuleBody :
43+ Enabled : true
44+
45+ Style/FrozenStringLiteralComment :
46+ Enabled : true
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33# Released under the MIT License.
4- # Copyright, 2018-2023 , by Samuel Williams.
4+ # Copyright, 2018-2024 , by Samuel Williams.
55
66source "https://rubygems.org"
77
1919 gem "covered"
2020 gem "sus"
2121 gem "decode"
22+ gem "rubocop"
2223
2324 gem "bake-test"
2425 gem "bake-test-external"
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33# Released under the MIT License.
4- # Copyright, 2019-2023 , by Samuel Williams.
4+ # Copyright, 2019-2024 , by Samuel Williams.
55# Copyright, 2022, by Dan Olson.
66
77module Protocol
Original file line number Diff line number Diff line change 22
33# Released under the MIT License.
44# Copyright, 2022, by Dan Olson.
5- # Copyright, 2023, by Samuel Williams.
5+ # Copyright, 2023-2024 , by Samuel Williams.
66
77require 'protocol/http/body/reader'
88require 'protocol/http/body/buffered'
You can’t perform that action at this time.
0 commit comments