Puppet Class: uhosting::profiles::uwsgi::ruby
- Defined in:
- manifests/profiles/uwsgi/ruby.pp
Overview
Class: uhosting::profiles::uwsgi::ruby
Installs and manages Ruby together with uWSGI
Authors
Tobias Brunner <tobias.brunner@vshn.ch>
Copyright
Copyright 2015 Tobias Brunner, VSHN AG
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/profiles/uwsgi/ruby.pp', line 13
class uhosting::profiles::uwsgi::ruby {
package {
'uwsgi-plugin-rack-ruby1.9.1':
ensure => installed,
require => Package['uwsgi-core'];
'ruby-rack':
ensure => installed;
}
class { '::ruby': }
}
|