Skip to content

Commit

Permalink
Drop shebangs
Browse files Browse the repository at this point in the history
Files would need to have executable bit set to benefit from shebangs.
But also the content would need to be prepared to be executable. This
might be true for the test cases, but it is not true for the other
scripts at all.
  • Loading branch information
voxik committed Jul 11, 2024
1 parent 789896b commit a585c0d
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion lib/builder.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
1 change: 0 additions & 1 deletion lib/builder/xchar.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

# The XChar library is provided courtesy of Sam Ruby (See
Expand Down
1 change: 0 additions & 1 deletion lib/builder/xmlbase.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

module Builder
Expand Down
1 change: 0 additions & 1 deletion lib/builder/xmlevents.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
1 change: 0 additions & 1 deletion lib/builder/xmlmarkup.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
#--
# Copyright 2004, 2005 by Jim Weirich (jim@weirichhouse.org).
Expand Down
1 change: 0 additions & 1 deletion rakelib/tags.rake
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

module Tags
Expand Down
1 change: 0 additions & 1 deletion test/performance.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
# encoding: iso-8859-1

Expand Down
1 change: 0 additions & 1 deletion test/test_eventbuilder.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
1 change: 0 additions & 1 deletion test/test_markupbuilder.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
1 change: 0 additions & 1 deletion test/test_method_caching.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
1 change: 0 additions & 1 deletion test/test_namecollision.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#--
Expand Down
2 changes: 0 additions & 2 deletions test/test_xchar.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
# encoding: us-ascii

Expand All @@ -12,7 +11,6 @@
# above copyright notice is included.
#++

#!/usr/bin/env ruby

require 'helper'
require 'builder/xchar'
Expand Down

0 comments on commit a585c0d

Please sign in to comment.