fastlane-plugin-applitoolsify 0.1.1 → 0.1.2

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
2
  SHA256:
3
- metadata.gz: 2bda9f029ce7b97e2ddd85897cdcb135c1df52e3869d6607bd3fed4fd8d81793
4
- data.tar.gz: c629369f2a8b96b8b52d625ef42eccc50a9b8cf2687939335c9c12e814492beb
3
+ metadata.gz: b7f50d57d82d84dfc765a80e29b12a8073a93f3c7154ba54636f09a59edb6913
4
+ data.tar.gz: 11e401c66c24fc59a3617f04060c5e940fe724b1ef201c37560f4b7393b0a4bc
5
5
  SHA512:
6
- metadata.gz: f8878eedccf46efcbbdf5c7cc618abb3e9040e6a6f69ae3fcfbdd9b9c182d2a2e8bab99531378ce75ae4c26ad9338ddd52659aa4d1d4853644e94d0b5b59b8cc
7
- data.tar.gz: bfed75f08acac1608c5080177c073852d9aba74a6e57a736f0023a867ba78f99eea161dd152482f553aca9972e0b614b8cdd8f1d9fce2666ba98f58312b3c88a
6
+ metadata.gz: b1eb5b4411fb40b7bdb0783c962ed35182508df34d990955f502ac9f286ef8f0a029ba13a53772b37627b36362d442d8f043b83fc09d8105ab5b9ead08b99aaf
7
+ data.tar.gz: dd9dcdad56d9e9e254ef769d8dc630061711a7101d28659574fc1803154440a8320862fb9d2b65d8d3ca42bf2e6db196df40a76988fe5c5a5baffada9fd0663a
data/README.md CHANGED
@@ -12,41 +12,30 @@ fastlane add_plugin applitoolsify
12
12
 
13
13
  ## About applitoolsify
14
14
 
15
- Add Applitools SDKs to ipa and app iOS apps as fastlane-plugin
16
-
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
15
+ Add Applitools SDKs (UFG_lib.xcframework) to iOS apps as fastlane-plugin
18
16
 
19
17
  ## Example
20
18
 
21
19
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
20
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
21
+ ## Using _fastlane_ Plugins
26
22
 
27
- To run both the tests, and code style validation, run
23
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
28
24
 
25
+ Adding lib into app-file, require path to your app-file:
29
26
  ```
30
- rake
27
+ applitoolsify applitoolsify_input: './some.app'
31
28
  ```
32
-
33
- To automatically fix many of the styling issues, use
29
+ For debug purposes you can store original file as is, by providing parameter where will to put app with lib:
34
30
  ```
35
- rubocop -a
31
+ applitoolsify applitoolsify_input: './before.app', applitoolsify_output: './after.app'
36
32
  ```
37
33
 
38
- ## Issues and Feedback
39
-
40
- For any other issues and feedback about this plugin, please submit it to this repository.
41
-
42
- ## Troubleshooting
43
-
44
- If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
-
46
- ## Using _fastlane_ Plugins
47
-
48
- For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
-
50
34
  ## About _fastlane_
51
35
 
52
36
  _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
37
+
38
+ ### fastline-docs links:
39
+ - Install Fastline https://docs.fastlane.tools/#getting-started
40
+ - Add Plugin https://docs.fastlane.tools/plugins/using-plugins/#add-a-plugin-to-your-project
41
+ - Run tasks https://docs.fastlane.tools/plugins/using-plugins/#run-with-plugins
@@ -1,3 +1,4 @@
1
+ require 'open-uri'
1
2
  require 'fastlane_core/ui/ui'
2
3
  require 'fileutils'
3
4
  require 'zip'
@@ -36,7 +37,7 @@ module Fastlane
36
37
  url = 'https://applitools.jfrog.io/artifactory/ufg-mobile/UFG_lib.xcframework.zip'
37
38
  filename = File.basename(url)
38
39
  where = File.expand_path(filename, tmpdir)
39
- open(url) {|cloud| File.write(where, cloud.read) } unless File.exist?(where)
40
+ OpenURI::open_uri(url) {|cloud| File.write(where, cloud.read) } unless File.exist?(where)
40
41
  where
41
42
  end
42
43
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Applitoolsify
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-applitoolsify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Applitools Team
@@ -9,8 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-11 00:00:00.000000000 Z
12
+ date: 2022-07-20 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: open-uri
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '0.1'
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.1.0
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ requirements:
28
+ - - "~>"
29
+ - !ruby/object:Gem::Version
30
+ version: '0.1'
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.1.0
14
34
  - !ruby/object:Gem::Dependency
15
35
  name: bundler
16
36
  requirement: !ruby/object:Gem::Requirement
@@ -184,8 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
204
  - !ruby/object:Gem::Version
185
205
  version: '0'
186
206
  requirements: []
187
- rubyforge_project:
188
- rubygems_version: 2.7.6
207
+ rubygems_version: 3.1.6
189
208
  signing_key:
190
209
  specification_version: 4
191
210
  summary: Add Applitools SDKs to ipa and app iOS apps as fastlane-plugin