Sha256: 0e400e7abd34e420cdb547f7049d9b7b1c3f81da8e7552da5b593a95cf7b1233

Contents?: true

Size: 1.58 KB

Versions: 9

Compression:

Stored size: 1.58 KB

Contents

require 'rake/tasklib'

module Rake
  module Funnel
    module Tasks
      class BinPath < Rake::TaskLib
        attr_accessor :name, :search_pattern, :path_modifier

        def initialize(*args, &task_block)
          setup_ivars(args)

          define(args, &task_block)
        end

        private

        def setup_ivars(args)
          @name = args.shift || :bin_path
          @search_pattern = %w(tools/* tools/*/bin packages/**/tools)
          @path_modifier = proc { |paths| paths }
        end

        def define(args, &task_block) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
          desc 'Add local binaries to PATH environment variable' unless Rake.application.last_description

          task(name, *args) do |_, task_args|
            yield(*[self, task_args].slice(0, task_block.arity)) if task_block

            next unless paths.any?

            prepend_pattern_to_path_environment(paths)
            Rake.rake_output_message 'Added the following paths to the PATH environment variable:'
            paths.each do |p|
              Rake.rake_output_message "  - #{p}"
            end
          end

          self
        end

        def paths
          @paths ||= @path_modifier.call(Dir[*search_pattern].select { |path| File.directory?(path) })
                                   .map { |path| File.expand_path(path) }
                                   .sort
        end

        def prepend_pattern_to_path_environment(paths)
          ENV['PATH'] = ([] << paths << ENV['PATH']).flatten.join(File::PATH_SEPARATOR)
          paths
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rake-funnel-0.22.1 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.22.0 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.21.2 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.21.1 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.21.0 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.20.2 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.20.1 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.20.0 lib/rake/funnel/tasks/bin_path.rb
rake-funnel-0.19.0 lib/rake/funnel/tasks/bin_path.rb