Sha256: 89a06a4ce16594fad8b6f1388c430a85273ab3a8acec72be933a7831c4cec7ab
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
require 'bundler' module Dockdev module Context class Rubygems def self.init_path(path) Rubygems.new(path) end def initialize(path) @path = path end def is_context? find_gemfile.length > 0 end def find_gemfile Dir.glob(File.join(@path,"Gemfile")) end def process_mount(mount_hash) if not mount_hash.nil? and mount_hash.is_a?(Hash) # # looking at source code # https://github.com/rubygems/rubygems/blob/master/bundler/lib/bundler/shared_helpers.rb#L246 # seems this is the way to set root for Bundler # ENV['BUNDLE_GEMFILE'] = find_gemfile.first Bundler.load.dependencies.each do |d| if not d.source.nil? src = d.source if src.path.to_s != "." mount_hash[d.name] = src.path.expand_path.to_s #res[d.name] = src.path.expand_path.to_s end end end end mount_hash end end end end Dockdev::Context::ContextManager.instance.register(:rubygems, Dockdev::Context::Rubygems)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dockdev-0.3.1 | lib/dockdev/context/rubygems.rb |
dockdev-0.3.0 | lib/dockdev/context/rubygems.rb |