motion-hockeyapp 1.1.2 → 1.1.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: 51bf3deaddc9ea26723f7f28063202dafb687228
4
- data.tar.gz: fa7385dff8c4ad7a5a0616c913d9a16ba24dd47c
3
+ metadata.gz: 5ec9b56e7ed5d5b32179a73a41368737773283a8
4
+ data.tar.gz: 259602e37137527ab41bea53272ddc71d02ed847
5
5
  SHA512:
6
- metadata.gz: 582031c2db3310c98b00b76e3287ef3f908332b8b073d7874efcc18d4e2b95cf269ca21c400ea5d35566812f91e914681125bd85edeb61364d99934ff02e5447
7
- data.tar.gz: 99be190f54654a7c9e3b72636ea3424589a50c1d0791c7e7f4a2f633a613fd54a0dc96a5b63e62cd5aaf558c91e5c5325802fc7aa2a207705c9f612df1295990
6
+ metadata.gz: ae2e678b8985f497c83efa4625b918b33003b02c5e26e49b85ef159cf2be88b5356ef63e50a17ee8fe5aa4005929d8d83c005f4f42c4195e3bad87d636167a0a
7
+ data.tar.gz: 2faab5185a002487f7b8f97a89d5216e16e308ce7229fbd8dcd0c9d6d2d925d40b77b2fe02f7471525c4dd0818989baf63412f7f180fbbfb56efa73a58591b8e
@@ -41,7 +41,7 @@ class HockeyAppConfig
41
41
  end
42
42
 
43
43
  def inspect
44
- {:api_token => api_token, :beta_id => beta_id, :live_id => live_id, :status => status, :notify => notify, :notes_type => notes_type, :always_show_update_reminder => always_show_update_reminder}.inspect
44
+ {:api_token => api_token, :beta_id => beta_id, :live_id => live_id, :status => status, :notify => notify, :notes_type => notes_type}.inspect
45
45
  end
46
46
 
47
47
  def configure!
@@ -76,9 +76,6 @@ end; end; end
76
76
 
77
77
  Motion::Project::App.setup do |app|
78
78
  app.files.push(File.join(File.dirname(__FILE__), "launcher.rb"))
79
- if Motion::Project::App.config_mode == :development
80
- app.files.push(File.join(File.dirname(__FILE__), "launcher-deviceid.rb"))
81
- end
82
79
  end
83
80
 
84
81
  namespace 'hockeyapp' do
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.2
4
+ version: 1.1.3
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-09-12 00:00:00.000000000 Z
11
+ date: 2013-10-07 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.
@@ -20,7 +20,6 @@ files:
20
20
  - README.rdoc
21
21
  - LICENSE
22
22
  - lib/motion/project/hockeyapp.rb
23
- - lib/motion/project/launcher-deviceid.rb
24
23
  - lib/motion/project/launcher.rb
25
24
  - lib/motion-hockeyapp.rb
26
25
  homepage: http://www.rubymotion.com
@@ -1,11 +0,0 @@
1
- class BITHockeyManagerLauncher
2
-
3
- def customDeviceIdentifierForUpdateManager(updateManager)
4
- if UIDevice.currentDevice.respond_to?('uniqueIdentifier')
5
- UIDevice.currentDevice.uniqueIdentifier
6
- else
7
- nil
8
- end
9
- end
10
-
11
- end