bubble-wrap 1.9.2 → 1.9.3

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
  SHA1:
3
- metadata.gz: 95bb977273e17a942c1eafb9b1b50310c6e0eb9d
4
- data.tar.gz: 05a96c0c6101319c9e182f857d2f598eafa2011f
3
+ metadata.gz: b69c5e01b7a0e85d3784964e7ecd53ba158a943c
4
+ data.tar.gz: ea92963d4e5f74e29705b36947492839e690d84d
5
5
  SHA512:
6
- metadata.gz: 6947c06f77c6dc682e3dfc96d1c998187ae7a6fadd523d55e0a7031a2fc85fcdc1a444ada67de7314ea1484e42dc49deb9540f9a38ba93bff520f65563994865
7
- data.tar.gz: 3e9c849bb376dfbb3b9cd1a73747a420fb25168cea4907991cfa17b5e8b6197e0e6d0e386c44f1e536a77d7d18c712e5d516abfde1c9820dbf001bb4eb6e94ba
6
+ metadata.gz: d519134a062ae37dcd15a9cda8fa9c1d5b86a1ee8eea624eb5778095e22615c214d12125b85673c817259265faaffcaeb47055a06b49ed9c9a6d5fd79ceb92b1
7
+ data.tar.gz: cb849504c7a1c4e4b8115af6ff3d94cabfe84b346bb49c377cd4286f67b25879c8d0309af8090ff874b6f46905d5e00c616158954cb7a2fbf379a4885a2fb0d2
@@ -1,6 +1,12 @@
1
1
  ## Unreleased
2
2
 
3
- [Commit history](https://github.com/rubymotion/BubbleWrap/compare/v1.9.2...master)
3
+ [Commit history](https://github.com/rubymotion/BubbleWrap/compare/v1.9.3...master)
4
+
5
+ ## 1.9.3
6
+
7
+ [Commit history](https://github.com/rubymotion/BubbleWrap/compare/v1.9.2...v1.9.3)
8
+
9
+ * Fixed `Device.simulator?` for iOS 9. ([#473](https://github.com/rubymotion/BubbleWrap/pull/473))
4
10
 
5
11
  ## 1.9.2
6
12
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bubble-wrap (1.9.2)
4
+ bubble-wrap (1.9.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,4 +1,4 @@
1
1
  module BubbleWrap
2
- VERSION = '1.9.2' unless defined?(BubbleWrap::VERSION)
2
+ VERSION = '1.9.3' unless defined?(BubbleWrap::VERSION)
3
3
  MIN_MOTION_VERSION = '3.12'
4
4
  end
@@ -42,7 +42,7 @@ module BubbleWrap
42
42
  end
43
43
 
44
44
  def simulator?
45
- @simulator_state ||= !(UIDevice.currentDevice.model =~ /simulator/i).nil?
45
+ @simulator_state ||= !(NSBundle.mainBundle.bundlePath.start_with? '/var/').nil?
46
46
  end
47
47
 
48
48
  # Returns the IOS SDK version currently running (i.e. "5.1" or "6.0" etc)
@@ -44,7 +44,6 @@ module BubbleWrap
44
44
  :enclosure => enclosure,
45
45
  :category => category,
46
46
  :encoded => encoded,
47
- :enclosure => enclosure
48
47
  }
49
48
  end
50
49
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubble-wrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.2
4
+ version: 1.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Aimonetti
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2015-07-27 00:00:00.000000000 Z
17
+ date: 2015-10-05 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: mocha