Skip to content

Commit

Permalink
(PUP-11841) Add frozen_string_literal after shebang
Browse files Browse the repository at this point in the history
The shebang line needs to come first
  • Loading branch information
joshcooper committed Apr 18, 2023
1 parent 2077971 commit 46eddcf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/puppet
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

begin
require 'puppet/util/command_line'
Expand Down
1 change: 1 addition & 0 deletions ext/windows/service/daemon.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require 'fileutils'
require 'puppet/util/windows/daemon'
Expand Down
1 change: 1 addition & 0 deletions util/rspec_grouper
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'rubygems'
require 'rspec'

Expand Down
1 change: 1 addition & 0 deletions util/rspec_runner
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'rubygems'
require 'rspec'
require 'rspec/core/formatters/progress_formatter'
Expand Down

0 comments on commit 46eddcf

Please sign in to comment.