motion-testflight 1.5 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf654050bf3b2c9c27164dc95d7bf3d74a57b399
4
- data.tar.gz: d1ed9f84b5f93c05a732be4bc8e16b67d312034b
3
+ metadata.gz: bcc77b5b1e9d3f7ace799882725fe20d245544e7
4
+ data.tar.gz: 3aa3f468b9611aa41bc54267517b53e55ee4cf55
5
5
  SHA512:
6
- metadata.gz: f87d56de278d7477681ac23ebdb1c5bf7b44caf4e5df472cdb0ad2eaf84f36152f660af9290b7c56edbe335004952b315f46e078c75e0ed190565a7f98b6338d
7
- data.tar.gz: 162e441dacde0a0bf16f21a3b48c0f24e3cbb4686e005185080adc24999c4bb07297561381f868abde0179b495de7f89f5f92ea342f5d9ca909de3d1a590a57c
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/TestFlight'
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(UIApplicationDidBecomeActiveNotification, object:nil, queue:nil, usingBlock:lambda do |notification|
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: '1.5'
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: 2013-04-01 00:00:00.000000000 Z
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
- - lib/motion/project/testflight.rb
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.0.3
43
+ rubygems_version: 2.2.2
44
44
  signing_key:
45
45
  specification_version: 4
46
46
  summary: TestFlight integration for RubyMotion projects