Class: Bundler::Runtime

Inherits:
Object
  • Object
show all
Defined in:
lib/lock_jar/bundler.rb

Instance Method Summary collapse

Instance Method Details

#_lockjar_extended_requireObject



81
# File 'lib/lock_jar/bundler.rb', line 81

alias :_lockjar_extended_require :require

#_lockjar_extended_setupObject



90
# File 'lib/lock_jar/bundler.rb', line 90

alias :_lockjar_extended_setup :setup

#require(*groups) ⇒ Object



82
83
84
85
86
87
88
# File 'lib/lock_jar/bundler.rb', line 82

def require(*groups)
  LockJar::Bundler.load(*groups)

  LockJar::Bundler.skip_lock = true

  _lockjar_extended_require
end

#setup(*groups) ⇒ Object



91
92
93
94
95
96
97
# File 'lib/lock_jar/bundler.rb', line 91

def setup(*groups)
  LockJar::Bundler.load(*groups)

  LockJar::Bundler.skip_lock = true

  _lockjar_extended_setup
end