ignatiusreza/activejob-trackable

View on GitHub
bin/test

Summary

Maintainability
Test Coverage

Script file test doesn't have execute permission.
Invalid

#!/usr/bin/env ruby
Severity: Minor
Found in bin/test by rubocop

This cop checks if a file which has a shebang line as its first line is granted execute permission.

Example:

# bad

# A file which has a shebang line as its first line is not
# granted execute permission.

#!/usr/bin/env ruby
puts 'hello, world'

# good

# A file which has a shebang line as its first line is
# granted execute permission.

#!/usr/bin/env ruby
puts 'hello, world'

# good

# A file which has not a shebang line as its first line is not
# granted execute permission.

puts 'hello, world'

There are no issues that match your filters.

Category
Status