bubble-wrap 1.9.2 → 1.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +1 -1
- data/lib/bubble-wrap/version.rb +1 -1
- data/motion/core/ios/device.rb +1 -1
- data/motion/rss_parser.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b69c5e01b7a0e85d3784964e7ecd53ba158a943c
|
4
|
+
data.tar.gz: ea92963d4e5f74e29705b36947492839e690d84d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d519134a062ae37dcd15a9cda8fa9c1d5b86a1ee8eea624eb5778095e22615c214d12125b85673c817259265faaffcaeb47055a06b49ed9c9a6d5fd79ceb92b1
|
7
|
+
data.tar.gz: cb849504c7a1c4e4b8115af6ff3d94cabfe84b346bb49c377cd4286f67b25879c8d0309af8090ff874b6f46905d5e00c616158954cb7a2fbf379a4885a2fb0d2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
## Unreleased
|
2
2
|
|
3
|
-
[Commit history](https://github.com/rubymotion/BubbleWrap/compare/v1.9.
|
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
|
|
data/Gemfile.lock
CHANGED
data/lib/bubble-wrap/version.rb
CHANGED
data/motion/core/ios/device.rb
CHANGED
@@ -42,7 +42,7 @@ module BubbleWrap
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def simulator?
|
45
|
-
@simulator_state ||= !(
|
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)
|
data/motion/rss_parser.rb
CHANGED
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.
|
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-
|
17
|
+
date: 2015-10-05 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: mocha
|