Skip to content

puppetlabs-operations/puppet-bundler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bundler Module

This module automatically install ruby dependencies using Bundler.

Dependencies

  • The ruby module has to be installed alongside this module.

Examples

Deploy a bundle with something like the following.

bundler::install { $app_root:
  user       => $app_user,
  group      => $app_group,
  deployment => true,
  without    => 'development test doc',
}