motion-provisioning 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 83572e34ead0dbc5ff1f9c311ab85037b4f46c76
4
- data.tar.gz: 5f45dd856b6dcd387b317201f1bf6b9233442007
2
+ SHA256:
3
+ metadata.gz: b943a1370641d985fcc5ff8b17e1d7d371972e491c8af1b2f34ebd9bbdb950ef
4
+ data.tar.gz: 322e1d8e91d79cad29bd87f07689b9290406e116e11d33c5155b125e53fb745f
5
5
  SHA512:
6
- metadata.gz: d06e517948d74114699e810431b419b51af91dc31a8af28e89f719bfc32c0e62c1c24db642be52ae9c98eb7517659b45d629473724f70bae8392966e45134147
7
- data.tar.gz: d0d156bde61fcf391c116da4743551cb1e251c2a03cfa7bc8692cce9c130046a17ac6736fd6a198f89fdd20bb7ec43a5f3265e7025eb62c43b748c568a47ddd9
6
+ metadata.gz: b5f3fa4e86d33e2a03e4bb7f54b3d61242eeab905a0b3876df8bf9e698d3933fe237db8d49e1403570d5b33e87c21dfd4a4c4d6aacb8ad727bb2e7c2697f40d5
7
+ data.tar.gz: d135cf35c5cf17a2bfabd89d9a62073ad085c12bd2b05cbd11d67890c6dd77b7f4feecb975370d60ce8aaa769650f6c0985dc7e8454cb581644677783a9bbf77
@@ -1,5 +1,5 @@
1
1
  module MotionProvisioning
2
- # Represents a .mobileprobision file on disk
2
+ # Represents a .mobileprovision file on disk
3
3
  class MobileProvision
4
4
  attr_accessor :hash, :enabled_services, :certificates
5
5
 
@@ -49,7 +49,7 @@ module MotionProvisioning
49
49
  # If there is a profile, we check the device is included.
50
50
  # Otherwise check if the device is registered in the Developer Portal.
51
51
  if profile
52
- profile_devices = profile.devices.map(&:udid)
52
+ profile_devices = profile.devices.map(&:udid).map(&:downcase)
53
53
  ids.each do |id|
54
54
  next if profile_devices.include?(id.downcase)
55
55
  answer = Utils.ask("Info", "This computer is connected to an iOS device with ID '#{id}' which is not included in the profile. Do you want to register it? (Y/n):")
@@ -1,3 +1,3 @@
1
1
  module MotionProvisioning
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-provisioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Villacampa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-22 00:00:00.000000000 Z
11
+ date: 2019-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.85'
39
+ version: 2.113.0
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '2.85'
46
+ version: 2.113.0
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: bundler
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  version: '0'
171
171
  requirements: []
172
172
  rubyforge_project:
173
- rubygems_version: 2.6.13
173
+ rubygems_version: 2.7.6
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: Simplified provisioning for RubyMotion iOS, tvOS and macOS apps.