Sha256: 02881033225966932557d0a5bb117e4d087324c052091d16ac496e2127959e5c
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 KB
Contents
require 'cfpropertylist' module SimCtl class DeviceSettings attr_reader :path def initialize(path) @path = path end # Disables the keyboard helpers # # @return [void] def disable_keyboard_helpers edit_plist(path.preferences_plist) do |plist| %w( KeyboardAllowPaddle KeyboardAssistant KeyboardAutocapitalization KeyboardAutocorrection KeyboardCapsLock KeyboardCheckSpelling KeyboardPeriodShortcut KeyboardPrediction KeyboardShowPredictionBar ).each do |key| plist[key] = false end end end # Updates hardware keyboard settings # # @param enabled value to replace # @return [vod] def update_hardware_keyboard(enabled) edit_plist(path.preferences_plist) do |plist| plist['AutomaticMinimizationEnabled'] = enabled end end def edit_plist(path, &block) plist = File.exists?(path) ? CFPropertyList::List.new(file: path) : CFPropertyList::List.new content = CFPropertyList.native_types(plist.value) || {} yield content plist.value = CFPropertyList.guess(content) plist.save(path, CFPropertyList::List::FORMAT_BINARY) end # Sets the device language # # @return [void] def set_language(language) edit_plist(path.global_preferences_plist) do |plist| key = 'AppleLanguages' plist[key] = [] unless plist.has_key?(key) plist[key].unshift(language).uniq! end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simctl-1.6.2 | lib/simctl/device_settings.rb |
simctl-1.6.1 | lib/simctl/device_settings.rb |
simctl-1.6.0 | lib/simctl/device_settings.rb |