motion-testflight 1.5 → 1.5.1
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 +4 -4
- data/README.rdoc +1 -2
- data/lib/motion/project/testflight.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcc77b5b1e9d3f7ace799882725fe20d245544e7
|
|
4
|
+
data.tar.gz: 3aa3f468b9611aa41bc54267517b53e55ee4cf55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f85db2a187747f8998ebde39b14cda7e92feba043e5bd01393dcb0bde1444d8dad543a05e23c93f2e1489007a95e58d93619571b05b5981e7d4819ae0ec5da0f
|
|
7
|
+
data.tar.gz: 761375f4b2d39d14d613b3400b35458830cab1f1d3c5f4a518fbdca26306e7bd2b5f1bca834c5bdc2ff12c68111ba4cc1a7fde7597b34a17958a5840987588da
|
data/README.rdoc
CHANGED
|
@@ -32,7 +32,7 @@ SDK and be submitted to the TestFlight platform.
|
|
|
32
32
|
app.development do
|
|
33
33
|
# ...
|
|
34
34
|
app.testflight do
|
|
35
|
-
app.testflight.sdk = 'vendor/
|
|
35
|
+
app.testflight.sdk = 'vendor/TestFlightSDK'
|
|
36
36
|
app.testflight.api_token = '<insert your API token here>'
|
|
37
37
|
app.testflight.team_token = '<insert your team token here>'
|
|
38
38
|
app.testflight.notify = true # default is false
|
|
@@ -48,7 +48,6 @@ SDK and be submitted to the TestFlight platform.
|
|
|
48
48
|
# ...
|
|
49
49
|
app.testflight do
|
|
50
50
|
# ...
|
|
51
|
-
|
|
52
51
|
app.testflight.app_token = '<insert your APP token here>'
|
|
53
52
|
end
|
|
54
53
|
|
|
@@ -70,7 +70,7 @@ class TestFlightConfig
|
|
|
70
70
|
# This file is automatically generated. Do not edit.
|
|
71
71
|
|
|
72
72
|
if Object.const_defined?('TestFlight') and !UIDevice.currentDevice.model.include?('Simulator')
|
|
73
|
-
NSNotificationCenter.defaultCenter.addObserverForName(
|
|
73
|
+
NSNotificationCenter.defaultCenter.addObserverForName(UIApplicationDidFinishLaunchingNotification, object:nil, queue:nil, usingBlock:lambda do |notification|
|
|
74
74
|
#{'TestFlight.setDeviceIdentifier(UIDevice.currentDevice.uniqueIdentifier)' if identify_testers}
|
|
75
75
|
TestFlight.takeOff('#{app_token || team_token}')
|
|
76
76
|
end)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motion-testflight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent Sansonetti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: motion-testflight allows RubyMotion projects to easily embed the TestFlight
|
|
14
14
|
SDK and be submitted to the TestFlight platform.
|
|
@@ -17,10 +17,10 @@ executables: []
|
|
|
17
17
|
extensions: []
|
|
18
18
|
extra_rdoc_files: []
|
|
19
19
|
files:
|
|
20
|
-
- README.rdoc
|
|
21
20
|
- LICENSE
|
|
22
|
-
-
|
|
21
|
+
- README.rdoc
|
|
23
22
|
- lib/motion-testflight.rb
|
|
23
|
+
- lib/motion/project/testflight.rb
|
|
24
24
|
homepage: http://www.rubymotion.com
|
|
25
25
|
licenses: []
|
|
26
26
|
metadata: {}
|
|
@@ -30,17 +30,17 @@ require_paths:
|
|
|
30
30
|
- lib
|
|
31
31
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
|
-
- -
|
|
33
|
+
- - ">="
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
35
|
version: '0'
|
|
36
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
requirements: []
|
|
42
42
|
rubyforge_project:
|
|
43
|
-
rubygems_version: 2.
|
|
43
|
+
rubygems_version: 2.2.2
|
|
44
44
|
signing_key:
|
|
45
45
|
specification_version: 4
|
|
46
46
|
summary: TestFlight integration for RubyMotion projects
|