method
exec_bundle_command
v8.0.0 -
Show latest stable
- Class:
Rails::Generators::AppBase
exec_bundle_command(bundle_command, command, env)private
No documentation available.
# File railties/lib/rails/generators/app_base.rb, line 649
def exec_bundle_command(bundle_command, command, env)
full_command = %["#{Gem.ruby}" "#{bundle_command}" #{command}]
if options[:quiet]
system(env, full_command, out: File::NULL)
else
system(env, full_command)
end
end