diff --git a/Casks/arranger.rb b/Casks/arranger.rb index b6b0898fb70cf..593745299ecf1 100644 --- a/Casks/arranger.rb +++ b/Casks/arranger.rb @@ -9,5 +9,14 @@ license :unknown app 'Arranger.app' - caveats 'Note that Arranger also needs access for assistive devices (Accessibility)' + + # todo: replace with new assistive_devices stanza + caveats do + <<-EOS.undent + To use #{@cask}, you may need to give it access to assistive + devices (Accessibility). For OS X Mavericks and Above: + + System Preferences / Security & Privacy / Privacy / Accessibility + EOS + end end diff --git a/Casks/keycastr.rb b/Casks/keycastr.rb index 29ec3ca1656d3..781c576d7eeed 100644 --- a/Casks/keycastr.rb +++ b/Casks/keycastr.rb @@ -9,10 +9,13 @@ app 'KeyCastr.app' - # todo: transitional, replace #{self.name...} with #{token} - caveats <<-EOS.undent - For OSX 10.9 or later, #{self.name.sub(/^KlassPrefix/,'').gsub(/([a-zA-Z\d])([A-Z])/,'\1-\2').gsub(/([a-zA-Z\d])([A-Z])/,'\1-\2').downcase} requires that you "Enable access for assistive devices". - The app must be dragged into the Accessibility list in System Preferences. - See https://github.com/sdeken/keycastr/issues/5 - EOS + # todo: replace with new assistive_devices stanza + caveats do + <<-EOS.undent + To use #{@cask}, you may need to give it access to assistive + devices (Accessibility). For OS X Mavericks and Above: + + System Preferences / Security & Privacy / Privacy / Accessibility + EOS + end end diff --git a/Casks/plover.rb b/Casks/plover.rb index f3605d1685880..e40b5dc37a8f4 100644 --- a/Casks/plover.rb +++ b/Casks/plover.rb @@ -8,7 +8,13 @@ app 'plover.app' + # todo: replace with new assistive_devices stanza caveats do - assistive_devices + <<-EOS.undent + To use #{@cask}, you may need to give it access to assistive + devices (Accessibility). For OS X Mavericks and Above: + + System Preferences / Security & Privacy / Privacy / Accessibility + EOS end end diff --git a/Casks/typinator.rb b/Casks/typinator.rb index 2faed70945a3e..cd211efc1d4ed 100644 --- a/Casks/typinator.rb +++ b/Casks/typinator.rb @@ -7,7 +7,14 @@ license :unknown app 'Typinator.app' + + # todo: replace with new assistive_devices stanza caveats do - assistive_devices + <<-EOS.undent + To use #{@cask}, you may need to give it access to assistive + devices (Accessibility). For OS X Mavericks and Above: + + System Preferences / Security & Privacy / Privacy / Accessibility + EOS end end