The multi_json dep of the sauce gem won't work with the Rubygems version on Lucid

Needs >= 1.3.6, Lucid can only provide 1.3.5. Rats, we'll just have to drop the .jar file onto disk manually
This commit is contained in:
R. Tyler Croy 2012-06-21 13:06:21 -07:00
parent 38b3755066
commit 6e8e52b124
2 changed files with 0 additions and 14 deletions

View File

@ -1,11 +1,4 @@
class sauceconnect {
package {
'sauce' :
ensure => present,
provider => gem;
}
class {
"sauceconnect::${osfamily}" : ;
}

View File

@ -5,13 +5,6 @@ describe 'sauceconnect' do
{:osfamily => 'debian'}
end
it 'should install the sauce gem' do
should contain_package('sauce').with({
'provider' => 'gem',
'ensure' => 'present'
})
end
context 'on Debian family systems' do
let(:facts) do
{ :osfamily => 'debian' }