summaryrefslogtreecommitdiff
path: root/manifests/ruby.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/ruby.pp')
-rw-r--r--manifests/ruby.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/ruby.pp b/manifests/ruby.pp
new file mode 100644
index 0000000..163eaf6
--- /dev/null
+++ b/manifests/ruby.pp
@@ -0,0 +1,13 @@
+class apache::ruby inherits apache::passenger {
+ # Needed by https://git.codecoop.org/projects/coquelicot
+ package { [ 'libsinatra-ruby1.8', 'libruby1.8',
+ 'libhaml-ruby1.8', 'liblockfile-ruby',
+ 'libgettext-ruby1.8', 'libjson-ruby1.8' ]:
+ ensure => installed,
+ }
+
+ # Already provided by libruby1.8 package
+ package { 'libopenssl-ruby1.8':
+ ensure => absent,
+ }
+}