ios_android_toolbox 0.0.25 → 0.0.26
Sign up to get free protection for your applications and to get access to all the features.
@@ -145,7 +145,10 @@ module IosAndroidToolbox
|
|
145
145
|
def self.profile_worth_installing?(path)
|
146
146
|
new_profile = IosProvisioningProfile.new(path)
|
147
147
|
loop_through_existing_profiles do |installed_profile, path|
|
148
|
-
if installed_profile.app_id == new_profile.app_id and
|
148
|
+
if installed_profile.app_id == new_profile.app_id and
|
149
|
+
(installed_profile.is_development? == new_profile.is_development? or
|
150
|
+
installed_profile.is_production? == new_profile.is_production? or
|
151
|
+
installed_profile.is_adhoc? == new_profile.is_adhoc?)
|
149
152
|
return false if installed_profile.creation_date >= new_profile.creation_date
|
150
153
|
end
|
151
154
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ios_android_toolbox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 43
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 26
|
10
|
+
version: 0.0.26
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Igor Sales
|