motion-hockeyapp 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/motion/project/hockeyapp.rb +2 -2
- data/lib/motion/project/launcher.rb +6 -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: 48879b435ce31dbf237664385b9c3e4f2415be7f
|
4
|
+
data.tar.gz: 604340ed8d765f3daa3239fa089c101d02c1dbcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c3a2b9049be592f46ce3c9e4baaa4425a01e4e9fb895552622cecf886704186be027c7aad7938a12b187c3184cce4fd817d28b482799b6897f43461c3454f71
|
7
|
+
data.tar.gz: c6986bd32ec0149041f59c69303bfc4c67093d062a0de0c0b1f112c1e79c357206a2755d5222a1c6fc37eb9d9ba43fd964d7049feda961de0918e02e84f25fac
|
@@ -75,10 +75,10 @@ module Motion; module Project; class Config
|
|
75
75
|
end; end; end
|
76
76
|
|
77
77
|
Motion::Project::App.setup do |app|
|
78
|
+
app.files.push(File.join(File.dirname(__FILE__), "launcher.rb"))
|
78
79
|
if Motion::Project::App.config_mode == :development
|
79
|
-
app.files.
|
80
|
+
app.files.push(File.join(File.dirname(__FILE__), "launcher-deviceid.rb"))
|
80
81
|
end
|
81
|
-
app.files.unshift(File.join(File.dirname(__FILE__), "launcher.rb"))
|
82
82
|
end
|
83
83
|
|
84
84
|
namespace 'hockeyapp' do
|
@@ -1,3 +1,8 @@
|
|
1
|
+
if Object.const_defined?('BITHockeyManager')
|
2
|
+
# force loading of BITCrashManagerStatusAutoSend
|
3
|
+
BITCrashManagerStatusAutoSend
|
4
|
+
end
|
5
|
+
|
1
6
|
class BITHockeyManagerLauncher
|
2
7
|
|
3
8
|
def start(&block)
|
@@ -6,7 +11,7 @@ class BITHockeyManagerLauncher
|
|
6
11
|
return unless @plist
|
7
12
|
BITHockeyManager.sharedHockeyManager.configureWithBetaIdentifier(@plist['beta_id'], liveIdentifier:@plist['live_id'], delegate:self)
|
8
13
|
|
9
|
-
BITHockeyManager.sharedHockeyManager.crashManager.crashManagerStatus =
|
14
|
+
BITHockeyManager.sharedHockeyManager.crashManager.crashManagerStatus = BITCrashManagerStatusAutoSend
|
10
15
|
block.call if !block.nil?
|
11
16
|
BITHockeyManager.sharedHockeyManager.startManager
|
12
17
|
true
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-hockeyapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe Noon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: motion-hockeyapp allows RubyMotion projects to easily embed the Hockey
|
14
14
|
SDK and be submitted to the HockeyApp platform.
|