fastlane-plugin-remove_provisioning_profile 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
2
  SHA1:
3
- metadata.gz: efe31afba7e6fb11b2787c9434d8519e3afa304a
4
- data.tar.gz: a704551ef7010ff0f42495ca3a2be459f2bebf9a
3
+ metadata.gz: 28f01de37d681323d4ba2b6b863c558d038f0428
4
+ data.tar.gz: ab4a5654335facd232b9207594f346d6dfe4ad8c
5
5
  SHA512:
6
- metadata.gz: c19431ebbf94c2c0f0243a4b7c2ca2537dd38d91793c1d536d8781cfc5126c648ba9b20a3bce6177af4a3d8eea3a46b540e34cb6ef2f7e25f4d69ee7384d09f2
7
- data.tar.gz: b939350f4a4cf508ff932c54e29b471c65f98af36f8899cc447e24df0ee182d6146e2f0a1733d95fca8f91cad73e23712694c88bf5306fc16cfc5460796576ee
6
+ metadata.gz: 337e87ecb29abb4f3f69c8468d6b2b8b663a2f048ba8af9aa84d615f59c54aef7f1ee2ecb4e40b08322bd7df2f6dce8b846f1999a0d0064331d194068076df41
7
+ data.tar.gz: 0f2b10aa44dffc502ce63573e13ff6bc43bcff6dffd113341e6aa878de43020ea3c981cb1a9b87e96bf6a4467d7eaff8632d5dd605888caf2fae63d86d339d14
@@ -13,9 +13,6 @@ module Fastlane
13
13
  Dir.foreach(provisioning_profiles_folder) do |file|
14
14
  next unless file.end_with?(".mobileprovision")
15
15
  file_path = "#{provisioning_profiles_folder}/#{file}"
16
- puts file_path
17
- puts self.mobileprovision_of_app_identifier?(file_path, app_identifier)
18
- puts self.mobileprovision_of_type?(file_path, type)
19
16
  if self.mobileprovision_of_app_identifier?(file_path, app_identifier) && self.mobileprovision_of_type?(file_path, type)
20
17
  provisioning_profiles << file_path
21
18
  UI.message("Found matched provisioning profile at '#{file_path}'") if $verbose
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module RemoveProvisioningProfile
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-remove_provisioning_profile
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
  - Anton Domashnev