simctl 1.6.6 → 1.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e2a17c1694402d480a1b2c2907d912c118d6aaa91752a8977c69097fe05cab2
4
- data.tar.gz: c1e185640f21153f13caf85c3f5ba5d2758689d865c10487b25997576c718fb1
3
+ metadata.gz: f9e9a83d7edd52e86d76568513d830437266845ea90eb8ecea4a709ad0deea6d
4
+ data.tar.gz: 7f0b6f86ad29a264d7a95950ab63789a454673328c127ad3b8595f02ff46c911
5
5
  SHA512:
6
- metadata.gz: cce62d9925abb6cd995d50c82a35cab1214f66f66769767c62b6ea5757378a10647263727b10b87c5804272c9fb9424c0c70fe5187c98a194cd8dde7b5b91828
7
- data.tar.gz: 9a99d1ae842b20561900bcb56342b7433b97d2118248876ebb84084d5ba480db058054429a041becf4c154e45aaff124b91fb7834538beb3b489c4cae41a057f
6
+ metadata.gz: a21a7c730e4e166b4c3e607015d204296167d0534c2dbf06becc2dc7a2895fc1be80c789f2e3424be2a8569d1524b572d37f7827aa53660d9657bb2cd9477997
7
+ data.tar.gz: b55a02c3f3666316a1382358f7a83be30675c45aa08dd3e38da27ec01da00a6835d3f5e2eb1c6110c5772143601ffc7c73afa8e3bb3b8512f90965256230ce86
@@ -8,10 +8,10 @@ matrix:
8
8
  osx_image: xcode10.3
9
9
  env: CUSTOM_DEVICE_SET_PATH=false
10
10
  - os: osx
11
- osx_image: xcode11
11
+ osx_image: xcode11.2
12
12
  env: CUSTOM_DEVICE_SET_PATH=true
13
13
  - os: osx
14
- osx_image: xcode11
14
+ osx_image: xcode11.2
15
15
  env: CUSTOM_DEVICE_SET_PATH=false
16
16
  before_script:
17
17
  - export LANG=en_US.UTF-8
@@ -1,3 +1,7 @@
1
+ # 1.6.7
2
+
3
+ * Turn off sliding hint on keyboard
4
+
1
5
  # 1.6.6
2
6
 
3
7
  * Fix `device.reset`
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simctl (1.6.6)
4
+ simctl (1.6.7)
5
5
  CFPropertyList
6
6
  naturally
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- CFPropertyList (3.0.0)
11
+ CFPropertyList (3.0.2)
12
12
  ast (2.4.0)
13
13
  coveralls (0.8.23)
14
14
  json (>= 1.8, < 3)
@@ -13,6 +13,7 @@ module SimCtl
13
13
  # @return [void]
14
14
  def disable_keyboard_helpers
15
15
  edit_plist(path.preferences_plist) do |plist|
16
+ plist['DidShowContinuousPathIntroduction'] = true
16
17
  %w[
17
18
  KeyboardAllowPaddle
18
19
  KeyboardAssistant
@@ -1,3 +1,3 @@
1
1
  module SimCtl
2
- VERSION = '1.6.6'.freeze
2
+ VERSION = '1.6.7'.freeze
3
3
  end
@@ -77,8 +77,8 @@ RSpec.describe SimCtl do
77
77
  end
78
78
 
79
79
  it 'finds the latest runtime' do
80
- if SimCtl::Xcode::Version.gte?('11.0')
81
- expect(SimCtl::Runtime.latest(:ios).version).to be == '13.0'
80
+ if SimCtl::Xcode::Version.gte?('11.2')
81
+ expect(SimCtl::Runtime.latest(:ios).version).to be == '13.2.2'
82
82
  elsif SimCtl::Xcode::Version.gte?('10.3')
83
83
  expect(SimCtl::Runtime.latest(:ios).version).to be == '12.4'
84
84
  elsif SimCtl::Xcode::Version.gte?('9.0')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simctl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.6
4
+ version: 1.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johannes Plunien
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-13 00:00:00.000000000 Z
11
+ date: 2019-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls