11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/bootboot/command.rb', line 11
def exec(_cmd, _args)
FileUtils.cp(GEMFILE_LOCK, GEMFILE_NEXT_LOCK)
File.open(GEMFILE, "a+") do |f|
f.write(" Plugin.send(:load_plugin, 'bootboot') if Plugin.installed?('bootboot')\n\n if ENV['\#{Bootboot.env_next}']\n enable_dual_booting if Plugin.installed?('bootboot')\n\n # Add any gem you want here, they will be loaded only when running\n # bundler command prefixed with `\#{Bootboot.env_next}=1`.\n end\n EOM\n end\nend\n")
|