Move frozen_string_literal magic comment to top of file

Resolves:

    $ RUBYOPT='-w' bundle --version
    Gemfile:4: warning: `frozen_string_literal' is ignored after any tokens
This commit is contained in:
Andrew Kvalheim 2022-09-11 18:24:36 -07:00
parent 38f266f716
commit 803f8daa9e

View file

@ -1,7 +1,8 @@
# frozen_string_literal: true
def next? def next?
File.basename(__FILE__) == "Gemfile.next" File.basename(__FILE__) == "Gemfile.next"
end end
# frozen_string_literal: true
source 'https://rubygems.org' source 'https://rubygems.org'