Sha256: 8310ce96251c243666828c7b1ee52af4fad77b20455de82ef323ff6c05742081

Contents?: true

Size: 980 Bytes

Versions: 10

Compression:

Stored size: 980 Bytes

Contents

# Aruba
module Aruba
  # Generate script files on command line
  class ScriptFile
    private

    attr_reader :path, :content, :interpreter

    public

    def initialize(opts = {})
      @path        = opts[:path]
      @content     = opts[:content]
      @interpreter = opts[:interpreter]
    end

    def call
      Aruba.platform.write_file(path, "#{header}#{content}")
      Aruba.platform.chmod(0o755, path, {})
    end

    private

    def header
      if script_starts_with_shebang?
        ""
      elsif interpreter_is_absolute_path?
        format("#!%s\n", interpreter)
      elsif interpreter_is_just_the_name_of_shell?
        format("#!/usr/bin/env %s\n", interpreter)
      end
    end

    def interpreter_is_absolute_path?
      Aruba.platform.absolute_path? interpreter
    end

    def interpreter_is_just_the_name_of_shell?
      interpreter =~ /^[-_a-zA-Z.]+$/
    end

    def script_starts_with_shebang?
      content.start_with? "#!"
    end
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/aruba-2.2.0/lib/aruba/generators/script_file.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/aruba-2.2.0/lib/aruba/generators/script_file.rb
aruba-2.2.0 lib/aruba/generators/script_file.rb
aruba-2.1.0 lib/aruba/generators/script_file.rb
aruba-2.0.1 lib/aruba/generators/script_file.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/aruba-2.0.0/lib/aruba/generators/script_file.rb
aruba-2.0.0 lib/aruba/generators/script_file.rb
aruba-1.1.2 lib/aruba/generators/script_file.rb
aruba-1.1.1 lib/aruba/generators/script_file.rb
aruba-1.1.0 lib/aruba/generators/script_file.rb