# File lib/kwala/project_builder_utils.rb, line 73
  def ProjectBuilderUtils.contains_ruby_execution_command?(path)
    File.open(path, "r") do |f|
      return (f.read(1024).to_s =~ /^#!.*ruby/)
    end
  end