Skip to content

Commit ea41787

Browse files
committed
Add ruby 2.0.0-p353
1 parent 8759edc commit ea41787

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

manifests/2_0_0_p353.pp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
require 'spec_helper'
2+
3+
describe 'ruby::2_0_0_p353' do
4+
let(:facts) do
5+
{
6+
:boxen_home => '/opt/boxen',
7+
}
8+
end
9+
10+
it do
11+
should include_class("openssl")
12+
13+
should contain_ruby__version('2.0.0-p353')
14+
end
15+
end

0 commit comments

Comments
 (0)