fastlane-plugin-trainer 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +12 -9
- data/lib/fastlane/plugin/trainer/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42ca8a422250e1500a1f731806f6fe06a9cfa3b6
|
4
|
+
data.tar.gz: 3b21243da7813653c9751f40ceb100c9b19e9e96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17926e08107ae0a492a603ca1b72fe677af031acbd28506a34c4ec39234cca24065943da23f8220000c171b402ea60c5c54a043f5cc5ff09e6f5c1af5613b2e3
|
7
|
+
data.tar.gz: af5529b5777d538feecf9181140f4d8b899d032adb3d1bad274c6d2df5b0bfc263c1297d7d63c09a509f6595012b182de57f693c755a031082315f1a89d807b0
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2016 KrauseFx <
|
3
|
+
Copyright (c) 2016 KrauseFx <trainer@krausefx.com>
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -16,18 +16,21 @@ To use `trainer` in your lane, add the following to your `Fastfile`:
|
|
16
16
|
|
17
17
|
```ruby
|
18
18
|
lane :test do
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
trainer(output_directory: "/tmp/fastlane_trainer/#{Time.now.to_i}")
|
26
|
-
raise failure if failure
|
19
|
+
scan(scheme: "ThemojiUITests",
|
20
|
+
output_types: "",
|
21
|
+
fail_build: false)
|
22
|
+
|
23
|
+
trainer(output_directory: ".")
|
27
24
|
end
|
28
25
|
```
|
29
26
|
|
30
|
-
This will generate the JUnit file in the
|
27
|
+
This will generate the JUnit file in the current directory. 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.
|
28
|
+
|
29
|
+
If you use circle, use the following to automatically publish the JUnit reports
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
trainer(output_directory: ENV["CIRCLE_TEST_REPORTS"])
|
33
|
+
```
|
31
34
|
|
32
35
|
## Example
|
33
36
|
|
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.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- KrauseFx
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-24 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.
|
19
|
+
version: 0.5.0
|
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.
|
26
|
+
version: 0.5.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,7 +109,7 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: 1.98.0
|
111
111
|
description:
|
112
|
-
email:
|
112
|
+
email: trainer@krausefx.com
|
113
113
|
executables: []
|
114
114
|
extensions: []
|
115
115
|
extra_rdoc_files: []
|
@@ -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.8
|
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:
|