class Object
Public Instance Methods
app_cache_path()
click to toggle source
# File lib/bootboot/bundler_patch.rb, line 56 def app_cache_path 'vendor/cache-next' end
enable_dual_booting()
click to toggle source
# File lib/bootboot/bundler_patch.rb, line 52 def enable_dual_booting Bundler::Definition.prepend(DefinitionPatch) Bundler::SharedHelpers.singleton_class.prepend(SharedHelpersPatch) Bundler::Settings.prepend(Module.new do def app_cache_path 'vendor/cache-next' end end) end