File tree Expand file tree Collapse file tree 4 files changed +33
-28
lines changed
Expand file tree Collapse file tree 4 files changed +33
-28
lines changed Original file line number Diff line number Diff line change 66 build :
77
88 runs-on : ubuntu-latest
9+ strategy :
10+ matrix :
11+ ruby : [ '2.6', '2.7', '3.0' ]
912
1013 steps :
1114 - uses : actions/checkout@master
12- - name : Set up Ruby 2.6
13- uses : actions /setup-ruby@v1
15+ - name : Set up Ruby ${{ matrix.ruby }}
16+ uses : ruby /setup-ruby@fdcfbcf14ec9672f6f615cb9589a1bc5dd69d262
1417 with :
15- version : 2.6.x
18+ ruby- version : ${{ matrix.ruby }}
1619 - name : Build and test
1720 run : |
1821 gem install bundler
Original file line number Diff line number Diff line change 66GEM
77 remote: https://rubygems.org/
88 specs:
9- coderay (1.1.2 )
10- diff-lcs (1.3 )
9+ coderay (1.1.3 )
10+ diff-lcs (1.4.4 )
1111 ed25519 (1.2.4 )
12- method_source (0.8.2 )
13- pry (0.10.4 )
14- coderay (~> 1.1.0 )
15- method_source (~> 0.8.1 )
16- slop (~> 3.4 )
17- rspec (3.5.0 )
18- rspec-core (~> 3.5.0 )
19- rspec-expectations (~> 3.5.0 )
20- rspec-mocks (~> 3.5.0 )
21- rspec-core (3.5.4 )
22- rspec-support (~> 3.5.0 )
23- rspec-expectations (3.5.0 )
12+ method_source (1.0.0 )
13+ pry (0.14.0 )
14+ coderay (~> 1.1 )
15+ method_source (~> 1.0 )
16+ rspec (3.10.0 )
17+ rspec-core (~> 3.10.0 )
18+ rspec-expectations (~> 3.10.0 )
19+ rspec-mocks (~> 3.10.0 )
20+ rspec-core (3.10.1 )
21+ rspec-support (~> 3.10.0 )
22+ rspec-expectations (3.10.1 )
2423 diff-lcs (>= 1.2.0 , < 2.0 )
25- rspec-support (~> 3.5 .0 )
26- rspec-mocks (3.5.0 )
24+ rspec-support (~> 3.10 .0 )
25+ rspec-mocks (3.10.2 )
2726 diff-lcs (>= 1.2.0 , < 2.0 )
28- rspec-support (~> 3.5.0 )
29- rspec-support (3.5.0 )
30- slop (3.6.0 )
27+ rspec-support (~> 3.10.0 )
28+ rspec-support (3.10.2 )
3129
3230PLATFORMS
3331 ruby
3432
3533DEPENDENCIES
3634 ed25519 (~> 1.2 )
37- pry (~> 0.10 )
38- rspec (~> 3.5 )
39- rspec-mocks (~> 3.5 )
35+ pry (~> 0.14 )
36+ rspec (~> 3.10 )
37+ rspec-mocks (~> 3.10 )
4038 ssh_data !
4139
4240BUNDLED WITH
Original file line number Diff line number Diff line change 11require "ssh_data"
22require "ed25519"
33
4+ RSpec . configure do |config |
5+ config . color_mode = :off
6+ end
7+
48REPO_PATH = File . expand_path ( File . join ( __FILE__ , ".." , ".." ) )
59FIXTURE_PATH = File . expand_path ( File . join ( REPO_PATH , "spec" , "fixtures" ) )
610
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313 s . files = Dir [ "./lib/**/*.rb" ] + [ "./LICENSE.md" ]
1414
1515 s . add_development_dependency "ed25519" , "~> 1.2"
16- s . add_development_dependency "pry" , "~> 0.10 "
17- s . add_development_dependency "rspec" , "~> 3.5 "
18- s . add_development_dependency "rspec-mocks" , "~> 3.5 "
16+ s . add_development_dependency "pry" , "~> 0.14 "
17+ s . add_development_dependency "rspec" , "~> 3.10 "
18+ s . add_development_dependency "rspec-mocks" , "~> 3.10 "
1919end
You can’t perform that action at this time.
0 commit comments