Sha256: 734865a3ae101f29ab7c5d177daacc354e9c2d928d348de7b088072358e2d3c7

Contents?: true

Size: 1.17 KB

Versions: 17

Compression:

Stored size: 1.17 KB

Contents

module Bundler
  module Source
    class Path

      class Installer < Bundler::GemInstaller
        def initialize(spec, options = {})
          @spec              = spec
          @bin_dir           = Bundler.requires_sudo? ? "#{Bundler.tmp}/bin" : "#{Bundler.rubygems.gem_dir}/bin"
          @gem_dir           = Bundler.rubygems.path(spec.full_gem_path)
          @wrappers          = options[:wrappers] || true
          @env_shebang       = options[:env_shebang] || true
          @format_executable = options[:format_executable] || false
          @build_args        = options[:build_args] || Bundler.rubygems.build_args
        end

        def generate_bin
          return if spec.executables.nil? || spec.executables.empty?

          if Bundler.requires_sudo?
            FileUtils.mkdir_p("#{Bundler.tmp}/bin") unless File.exist?("#{Bundler.tmp}/bin")
          end
          super
          if Bundler.requires_sudo?
            Bundler.mkdir_p "#{Bundler.rubygems.gem_dir}/bin"
            spec.executables.each do |exe|
              Bundler.sudo "cp -R #{Bundler.tmp}/bin/#{exe} #{Bundler.rubygems.gem_dir}/bin/"
            end
          end
        end
      end

    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bundler-1.5.3 lib/bundler/source/path/installer.rb
bundler-1.5.2 lib/bundler/source/path/installer.rb
bundler-1.3.6 lib/bundler/source/path/installer.rb
bundler-1.5.1 lib/bundler/source/path/installer.rb
bundler-1.5.0 lib/bundler/source/path/installer.rb
bundler-1.5.0.rc.2 lib/bundler/source/path/installer.rb
bundler-1.5.0.rc.1 lib/bundler/source/path/installer.rb
bundler-1.4.0.rc.1 lib/bundler/source/path/installer.rb
bundler-1.4.0.pre.2 lib/bundler/source/path/installer.rb
bundler-1.4.0.pre.1 lib/bundler/source/path/installer.rb
bundler-1.3.5 lib/bundler/source/path/installer.rb
bundler-1.3.4 lib/bundler/source/path/installer.rb
bundler-1.3.3 lib/bundler/source/path/installer.rb
bundler-1.3.2 lib/bundler/source/path/installer.rb
bundler-1.3.1 lib/bundler/source/path/installer.rb
bundler-1.3.0 lib/bundler/source/path/installer.rb
bundler-1.3.0.pre.8 lib/bundler/source/path/installer.rb