Sha256: cc0fd9d40e02b8ac5d95646632659712ab2a3cbfc0c45ac7be0583119472e80e

Contents?: true

Size: 377 Bytes

Versions: 6

Compression:

Stored size: 377 Bytes

Contents

require 'rubygems'
require 'rubygems/specification'

module Gem
  @loaded_stacks = Hash.new { |h,k| h[k] = [] }

  class Specification
    attr_accessor :source, :location

    def load_paths
      require_paths.map {|p| File.join(full_gem_path, p) }
    end
    
    def groups
      @groups ||= []
    end
  end

  class Dependency
    attr_accessor :source, :group
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bundler-0.9.0 lib/bundler/rubygems.rb
bundler-0.9.0.pre5 lib/bundler/rubygems.rb
bundler-0.9.0.pre4 lib/bundler/rubygems.rb
bundler-0.9.0.pre3 lib/bundler/rubygems.rb
bundler-0.9.0.pre2 lib/bundler/rubygems.rb
bundler-0.9.0.pre1 lib/bundler/rubygems.rb