File tree 4 files changed +10
-7
lines changed
4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 10
10
test :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
- uses : ruby/setup-ruby@v1
15
15
with :
16
16
ruby-version : ' 3.2'
28
28
version : ${{ steps.release-gem.outputs.version }}
29
29
increment : ${{ steps.release-gem.outputs.increment }}
30
30
steps :
31
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
32
32
with :
33
33
fetch-depth : 0
34
34
- id : release-gem
Original file line number Diff line number Diff line change 17
17
# run:
18
18
# shell: bash
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
- uses : ruby/setup-ruby@v1
22
22
with :
23
23
ruby-version : ${{ matrix.ruby_version }}
31
31
ruby_version : ["3.2"]
32
32
os : ["ubuntu-latest","windows-latest","macos-latest"]
33
33
steps :
34
- - uses : actions/checkout@v3
34
+ - uses : actions/checkout@v4
35
35
- uses : ruby/setup-ruby@v1
36
36
with :
37
37
ruby-version : ${{ matrix.ruby_version }}
49
49
run :
50
50
shell : bash
51
51
steps :
52
- - uses : actions/checkout@v3
52
+ - uses : actions/checkout@v4
53
53
- uses : ruby/setup-ruby@v1
54
54
with :
55
55
ruby-version : ${{ matrix.ruby_version }}
Original file line number Diff line number Diff line change @@ -32,4 +32,5 @@ Gemfile.lock
32
32
gemfiles /* .gemfile.lock
33
33
reports /pacts
34
34
spec /examples.txt
35
- * bethtest *
35
+ * bethtest *
36
+ .DS_Store
Original file line number Diff line number Diff line change @@ -34,13 +34,15 @@ def webrick_opts port
34
34
require "rack"
35
35
begin
36
36
require "rackup/handler/webrick" # rack 3
37
+ PactWEBrick = Rackup ::Handler ::WEBrick
37
38
rescue LoadError
38
39
require "rack/handler/webrick" # rack 2
40
+ PactWEBrick = Rack ::Handler ::WEBrick
39
41
end
40
42
41
43
opts = webrick_opts ( 4444 )
42
44
43
- Rack :: Handler :: WEBrick . run ( app , **opts ) do |server |
45
+ PactWEBrick . run ( app , **opts ) do |server |
44
46
@server = server
45
47
end
46
48
end
You can’t perform that action at this time.
0 commit comments