class CreateRubyApp::Actions::InstallGems

Public Class Methods

call(app) click to toggle source
# File lib/create_ruby_app/actions/install_gems.rb, line 6
def self.call(app)
  Dir.chdir(app.name) { system("bundle", "install") }
end