fastlane-plugin-trainer 0.1.2 → 0.1.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b179a131a685c39c47d7a9f755cb92d27fbb5f24
|
4
|
+
data.tar.gz: c6ccc5a5c5006ab6f9a428153f7b361d1dce4d1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7d91c7a03cafd3dfb63c41fea00fd0e85877fb69071837bae755bb370f7a3a96fe83cbd52584c84f9a595008b9c8565596bf8d3220866db6ae2f9027c7b1672
|
7
|
+
data.tar.gz: 73e8b5790a8dfa0da8f8f84bfbac2620dcb79497edfc7e52feb2492b407e20d24ede91544eb80aae5df4908f14c7689bf8876dd8ffe04baee94af53d8176b188
|
data/README.md
CHANGED
@@ -18,7 +18,7 @@ To use `trainer` in your lane, add the following to your `Fastfile`:
|
|
18
18
|
lane :test do
|
19
19
|
scan(workspace: "MyApp.xcworkspace",
|
20
20
|
output_types: "",
|
21
|
-
derived_data_path: "/tmp/fastlane/#{Time.now}")
|
21
|
+
derived_data_path: "/tmp/fastlane/#{Time.now.to_i}")
|
22
22
|
trainer
|
23
23
|
end
|
24
24
|
```
|
@@ -4,7 +4,9 @@ module Fastlane
|
|
4
4
|
def self.run(params)
|
5
5
|
require "trainer"
|
6
6
|
|
7
|
-
|
7
|
+
params[:path] = Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH] if Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH]
|
8
|
+
|
9
|
+
return ::Trainer::TestParser.auto_convert(params)
|
8
10
|
end
|
9
11
|
|
10
12
|
def self.description
|
@@ -20,13 +22,8 @@ module Fastlane
|
|
20
22
|
end
|
21
23
|
|
22
24
|
def self.available_options
|
23
|
-
|
24
|
-
|
25
|
-
env_name: "trainer_PATH",
|
26
|
-
description: "Path to the directory containing the plist files",
|
27
|
-
default_value: Actions.lane_context[Actions::SharedValues::SCAN_DERIVED_DATA_PATH] || ".",
|
28
|
-
type: String)
|
29
|
-
]
|
25
|
+
require "trainer/options"
|
26
|
+
FastlaneCore::CommanderGenerator.new.generate(::Trainer::Options.available_options)
|
30
27
|
end
|
31
28
|
|
32
29
|
def self.is_supported?(platform)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-trainer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- KrauseFx
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: trainer
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.1.
|
19
|
+
version: 0.1.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.1.
|
26
|
+
version: 0.1.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 1.
|
103
|
+
version: 1.98.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.
|
110
|
+
version: 1.98.0
|
111
111
|
description:
|
112
112
|
email: KrauseFx@gmail.com
|
113
113
|
executables: []
|
@@ -140,8 +140,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
140
|
version: '0'
|
141
141
|
requirements: []
|
142
142
|
rubyforge_project:
|
143
|
-
rubygems_version: 2.
|
143
|
+
rubygems_version: 2.6.6
|
144
144
|
signing_key:
|
145
145
|
specification_version: 4
|
146
146
|
summary: Convert xcodebuild plist files to JUnit reports
|
147
147
|
test_files: []
|
148
|
+
has_rdoc:
|