From e3414251346f596eca84fef0dbfe7fc3ac399b60 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Tue, 10 Dec 2013 00:44:27 -0500 Subject: [PATCH] Upgrade to 2.3 for mavericks support --- manifests/init.pp | 6 +----- spec/classes/whatpulse_spec.rb | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 9512fd6..418e4ea 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,12 +1,8 @@ # This is a placeholder class. class whatpulse { package { 'Whatpulse': - source => 'http://amcdn.whatpulse.org/files/whatpulse-mac-2.2.1.dmg', + source => 'http://amcdn.whatpulse.org/files/whatpulse-mac-2.3.dmg', provider => pkgdmg } - - file { '/private/var/db/.AccessibilityAPIEnabled': - ensure => present, - } } diff --git a/spec/classes/whatpulse_spec.rb b/spec/classes/whatpulse_spec.rb index 35be2f4..a35c341 100644 --- a/spec/classes/whatpulse_spec.rb +++ b/spec/classes/whatpulse_spec.rb @@ -3,10 +3,9 @@ require 'spec_helper' describe 'whatpulse' do it do should contain_package('Whatpulse').with({ - :source => 'http://amcdn.whatpulse.org/files/whatpulse-mac-2.2.1.dmg', + :source => 'http://amcdn.whatpulse.org/files/whatpulse-mac-2.3.dmg', :provider => 'pkgdmg' }) - should contain_file('/private/var/db/.AccessibilityAPIEnabled') end end