Method: QEDProject::Project#bundle

Defined in:
lib/qedproject/project.rb

#bundleObject



44
45
46
47
48
49
50
# File 'lib/qedproject/project.rb', line 44

def bundle
  Dir.chdir(self.path) do
    puts "Bundling assets"
    `bundle install`
  end
    
end