There was an error while loading. Please reload this page.
1 parent 8759edc commit ea41787Copy full SHA for ea41787
manifests/2_0_0_p353.pp
@@ -0,0 +1,7 @@
1
+# Installs ruby 2.0.0-p353.
2
+
3
+class ruby::2_0_0_p353 {
4
+ require openssl
5
6
+ ruby::version { '2.0.0-p353': }
7
+}
spec/classes/ruby_2_0_0_p353_spec.rb
@@ -0,0 +1,15 @@
+require 'spec_helper'
+describe 'ruby::2_0_0_p353' do
+ let(:facts) do
+ {
+ :boxen_home => '/opt/boxen',
+ }
8
+ end
9
10
+ it do
11
+ should include_class("openssl")
12
13
+ should contain_ruby__version('2.0.0-p353')
14
15
+end
0 commit comments