fastlane-plugin-trainer 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
  SHA1:
3
- metadata.gz: 9f9aef7dc3a291e9dcb9968e36a56b1cfe879fcd
4
- data.tar.gz: c1eabac112e224b8d36151de7dc8d5c1972579bf
3
+ metadata.gz: ed443422f8d4d0abb85dd28ae49c6f7e32982b88
4
+ data.tar.gz: bf7862e4c461f708dd5cbfe0c55ba53e81416bc9
5
5
  SHA512:
6
- metadata.gz: 9ac953aac22292f482c70bb8ebd5363621163dc638807ae5151b5b4b4812383261f05d70fc7aa3e9322fb267434ec68d9920ffdb2a55eaa3548a9ba59569f883
7
- data.tar.gz: 5988951e8c3798e9b3e118d62589c30e605280897d92f8a610b0cf68e8fe45ec71c1b91b7adaba3aba7b911519ca51ddc20742a43492bde594efe014f4e4e87b
6
+ metadata.gz: c120b0c7bbace1ddcb16be7ca450aedb9d9c74a4bac2c361b432477306edea6e59b594fd019ec38a54b0f0713e68949ff3beb8cd41298812f895f8dadb049c33
7
+ data.tar.gz: ab2b9a781af871282300019fb6820f308e2e11c26877e606ad76678fe423d4843d6f4c8640eabeae19b50355131e7052176900fe0f84684035c4385b402e979d
data/README.md CHANGED
@@ -16,11 +16,15 @@ To use `trainer` in your lane, add the following to your `Fastfile`:
16
16
 
17
17
  ```ruby
18
18
  lane :test do
19
- scan(workspace: "MyApp.xcworkspace")
19
+ scan(workspace: "MyApp.xcworkspace",
20
+ output_types: "",
21
+ derived_data_path: "/tmp/fastlane/#{Time.now}")
20
22
  trainer
21
23
  end
22
24
  ```
23
25
 
26
+ This will generate the JUnit file in the temporary location `/tmp/fastlane_trainer/[time]`. You can specify any path you want, just make sure to have it clean for every run so that your CI system knows which one to pick.
27
+
24
28
  ## Example
25
29
 
26
30
  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`.
@@ -24,7 +24,7 @@ module Fastlane
24
24
  FastlaneCore::ConfigItem.new(key: :path,
25
25
  env_name: "trainer_PATH",
26
26
  description: "Path to the directory containing the plist files",
27
- default_value: ".",
27
+ default_value: Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH] || ".",
28
28
  type: String)
29
29
  ]
30
30
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Trainer
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-trainer
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
  - KrauseFx
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: 1.98.0
103
+ version: 1.99.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: 1.98.0
110
+ version: 1.99.0
111
111
  description:
112
112
  email: KrauseFx@gmail.com
113
113
  executables: []