scan 0.3.2 → 0.3.3

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: 3a99291096a26140f60868ca0178f2f659bc83e5
4
- data.tar.gz: fc9f940cbb11e15c5a4a06b0622b012f532fc17f
3
+ metadata.gz: a36b291dfc7c2e8139d915b07464b7b43fa0ccbc
4
+ data.tar.gz: 58139086e5d430f38bb7c0f185f51930db66c384
5
5
  SHA512:
6
- metadata.gz: 52879d6f6620af24434ce58623f28d7fa120aae7d9316937560ecf1906636db1a3f2aca201f424f7c0a40bf387fcc3666252f650616a53989c4fd9ed99a5ac6a
7
- data.tar.gz: 8effc4d3ae8c9fb31a4f53ecb8bfd13ac3b815d56081303f007746c89867bae2c7b8f6addb2964d92d1e857ade9e8831f1115c058bd8dda9e58e557589e749cc
6
+ metadata.gz: 52fd21eca38e9ff6be57beec023170973fb143d92b3db59d72692bde7b20587d19ceaf44d5a009805cef78262ea5042c017e9a381abc357f9a929a0eee4479e0
7
+ data.tar.gz: 222476d927b6e004c5b3a2367b33680c848293b6712b6e356b22174564ad7ce3042c2a495b71576bc79ab380d7c3b20fb64c074a52e75c6c7321a9f672129d06
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <a href="https://github.com/fastlane/deliver">deliver</a> &bull;
10
10
  <a href="https://github.com/fastlane/snapshot">snapshot</a> &bull;
11
11
  <a href="https://github.com/fastlane/frameit">frameit</a> &bull;
12
- <a href="https://github.com/fastlane/PEM">PEM</a> &bull;
12
+ <a href="https://github.com/fastlane/pem">pem</a> &bull;
13
13
  <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
14
14
  <a href="https://github.com/fastlane/produce">produce</a> &bull;
15
15
  <a href="https://github.com/fastlane/cert">cert</a> &bull;
@@ -17,7 +17,8 @@
17
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
- <b>scan</b>
20
+ <b>scan</b> &bull;
21
+ <a href="https://github.com/fastlane/match">match</a>
21
22
  </p>
22
23
  -------
23
24
 
@@ -136,7 +137,7 @@ Make sure, you have the latest version of the Xcode command line tools installed
136
137
 
137
138
  That's all you need to run your tests. If you want more control, here are some available parameters:
138
139
 
139
- scan --workspace "Example.xcworkspace" --scheme "AppName" --clean
140
+ scan --workspace "Example.xcworkspace" --scheme "AppName" --device "iPhone 6" --clean
140
141
 
141
142
  If you need to use a different xcode install, use xcode-select or define DEVELOPER_DIR:
142
143
 
@@ -184,13 +185,14 @@ For more information visit the [fastlane GitHub page](https://github.com/fastlan
184
185
  - [`deliver`](https://github.com/fastlane/deliver): Upload screenshots, metadata and your app to the App Store
185
186
  - [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
186
187
  - [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
187
- - [`PEM`](https://github.com/fastlane/PEM): Automatically generate and renew your push notification profiles
188
+ - [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
188
189
  - [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
189
190
  - [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
190
191
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
191
192
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
192
193
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
193
194
  - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
195
+ - [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
194
196
 
195
197
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
196
198
 
@@ -61,7 +61,7 @@ module Scan
61
61
  # During building we just show the output in the terminal
62
62
  # Check out the ReportCollector class for more xcpretty things
63
63
  formatter = []
64
- if Helper.ci?
64
+ if ENV.key?("TRAVIS")
65
65
  formatter << "-f `xcpretty-travis-formatter`"
66
66
  Helper.log.info "Automatically switched to Travis formatter".green
67
67
  end
data/lib/scan/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Scan
2
- VERSION = "0.3.2"
2
+ VERSION = "0.3.3"
3
3
  DESCRIPTION = "Making sure no bad code gets on board"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-24 00:00:00.000000000 Z
11
+ date: 2015-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core