summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-11-23 17:11:00 +0100
committermh <mh@immerda.ch>2012-11-23 17:11:00 +0100
commit9d1dea86c8826bfb6b6cc9421ba97cdf87084a19 (patch)
treeb331fc5a3bc602cd2c0f52ccac498ecbd01db28c
parent22164c0f83f07ee4089058409d50a12fd7d376ef (diff)
add new gems
-rw-r--r--manifests/sinatra.pp7
-rw-r--r--manifests/thin.pp7
2 files changed, 14 insertions, 0 deletions
diff --git a/manifests/sinatra.pp b/manifests/sinatra.pp
new file mode 100644
index 0000000..327f829
--- /dev/null
+++ b/manifests/sinatra.pp
@@ -0,0 +1,7 @@
+class rubygems::sinatra {
+ require rubygems
+ package{'sinatra':
+ ensure => present,
+ provider => gem,
+ }
+}
diff --git a/manifests/thin.pp b/manifests/thin.pp
new file mode 100644
index 0000000..b2499d8
--- /dev/null
+++ b/manifests/thin.pp
@@ -0,0 +1,7 @@
+class rubygems::thin {
+ require rubygems
+ package{'thin':
+ ensure => present,
+ provider => gem,
+ }
+}