fastlane-plugin-repack_ios 0.2.0 → 0.2.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
- SHA1:
3
- metadata.gz: 4c0f6aa9acb576759b5d6a84f5a05ec4193d1aaf
4
- data.tar.gz: c1dc955a3cb0b307b1c79bd4dff633e79bc64bde
2
+ SHA256:
3
+ metadata.gz: e8c4d8bd6f4d28d65f8fc6af9eb6572af03a4bc02760f2207fbfaeeef2a2ef5d
4
+ data.tar.gz: cc0c732f2b58cb484e4a6aabde0b5e3e75b8e02f1e54dac12c7a27e5406a1c4c
5
5
  SHA512:
6
- metadata.gz: 60cab7486525f97df804c0fbef70baa33ddab8a7263b72a07570ed5c2ef651596c66337d2ce3971c11713ac063d37d942538077ef17326bafaeb7fa00b64ea01
7
- data.tar.gz: 64f601b730707d5d61406eba4d3ea426b3a5e1b33ebed04f29c405c1cdbff6b6a6ee1fa6052fa492eb2eaf7991e2666dc68a50f8a973e40147c6d4d470f25da4
6
+ metadata.gz: 34bbe3ffb56eb3c705fa313dad316bd9c407261a7e80ed9def8bbdb0dfc0203f29063f48a476a41122de7218e08a20636b90b35dc150d9b36eecec04c1898340
7
+ data.tar.gz: 32fa17050b32d4149c73d2df0696a10b271d1764edfe500ebb3b988e099ca51ee6208d1d37b504960c2cc9722974adc48b3f783290090109e61f7d6149b47191
@@ -1,4 +1,5 @@
1
1
  require 'fastlane/action'
2
+ require 'gym'
2
3
  require_relative '../helper/repack_ios_helper'
3
4
 
4
5
  module Fastlane
@@ -29,6 +30,7 @@ module Fastlane
29
30
  UI.user_error!("Resolved ipa file: #{File.expand_path(ipa_path)} is not exists. Please provide ipa path.") unless File.exist?(ipa_path)
30
31
  else
31
32
  ipa_path = params[:ipa]
33
+ output_name = params[:output_name]
32
34
  end
33
35
 
34
36
  ipa_original_path = Helper::RepackIosHelper.unpack_and_repack(output_name, ipa_path, params[:contents])
@@ -174,6 +176,11 @@ module Fastlane
174
176
  UI.user_error!("Unsupported environment #{value}, must be in #{Match.environments.join(', ')}")
175
177
  end
176
178
  end),
179
+ FastlaneCore::ConfigItem.new(key: :output_name,
180
+ env_name: "FL_REPACK_IOS_OUTPUT_NAME",
181
+ description: "The name of the resulting app file inside the ipa file",
182
+ is_string: true,
183
+ optional: true),
177
184
  FastlaneCore::ConfigItem.new(key: :provisioning_profile,
178
185
  env_name: "FL_REPACK_IOS_PROVISIONING_PROFILE",
179
186
  description: "Path to your provisioning_profile. Optional if you use _sigh_ or _match_",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module RepackIos
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-repack_ios
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Omer Duzyol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-24 00:00:00.000000000 Z
11
+ date: 2020-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: zip
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: pry
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -181,8 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
167
  - !ruby/object:Gem::Version
182
168
  version: '0'
183
169
  requirements: []
184
- rubyforge_project:
185
- rubygems_version: 2.5.2.3
170
+ rubygems_version: 3.0.8
186
171
  signing_key:
187
172
  specification_version: 4
188
173
  summary: Enables your build pipeline to repack your pre-built ipa with new assets