In Files

  • bundler/installer/standalone.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Bundler::Standalone

Public Class Methods

new(groups, definition) click to toggle source
 
               # File bundler/installer/standalone.rb, line 5
def initialize(groups, definition)
  @specs = definition.specs_for(groups)
end
            

Public Instance Methods

generate() click to toggle source
 
               # File bundler/installer/standalone.rb, line 9
def generate
  SharedHelpers.filesystem_access(bundler_path) do |p|
    FileUtils.mkdir_p(p)
  end
  File.open File.join(bundler_path, "setup.rb"), "w" do |file|
    file.puts "require 'rbconfig'"
    file.puts reverse_rubygems_kernel_mixin
    paths.each do |path|
      if Pathname.new(path).absolute?
        file.puts %($:.unshift "#{path}")
      else
        file.puts %($:.unshift File.expand_path("\#{__dir__}/#{path}"))
      end
    end
  end
end