Sha256: 5fcdcf6c14abd02d7a6401f98d3f3fea5615b4494e41a1f869c1fbe31b67d4e2

Contents?: true

Size: 1.54 KB

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
simctl-1.5.8 lib/simctl/device_settings.rb
simctl-1.5.7 lib/simctl/device_settings.rb
simctl-1.5.6 lib/simctl/device_settings.rb
simctl-1.5.5 lib/simctl/device_settings.rb