File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1010 ruby : ['3.0', head]
1111 runs-on : ${{ matrix.os }}
1212 steps :
13- - uses : actions/checkout@v5
13+ - uses : actions/checkout@v6
1414 - uses : ruby/setup-ruby@v1
1515 with :
1616 ruby-version : ${{ matrix.ruby }}
Original file line number Diff line number Diff line change 88# this file is here to facilitate running it.
99#
1010
11- ENV [ " BUNDLE_GEMFILE" ] ||= File . expand_path ( " ../Gemfile" , __dir__ )
11+ ENV [ ' BUNDLE_GEMFILE' ] ||= File . expand_path ( ' ../Gemfile' , __dir__ )
1212
13- bundle_binstub = File . expand_path ( " bundle" , __dir__ )
13+ bundle_binstub = File . expand_path ( ' bundle' , __dir__ )
1414
1515if File . file? ( bundle_binstub )
16- if File . read ( bundle_binstub , 300 ) . include? ( " This file was generated by Bundler" )
16+ if File . read ( bundle_binstub , 300 ) . include? ( ' This file was generated by Bundler' )
1717 load ( bundle_binstub )
1818 else
1919 abort ( "Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
2020Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again." )
2121 end
2222end
2323
24- require " rubygems"
25- require " bundler/setup"
24+ require ' rubygems'
25+ require ' bundler/setup'
2626
27- load Gem . bin_path ( " tapioca" , " tapioca" )
27+ load Gem . bin_path ( ' tapioca' , ' tapioca' )
You can’t perform that action at this time.
0 commit comments