fastlane-plugin-lizard 1.2.0 → 1.3.0

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: 27c0fb83c526e5194511cffe11703cc2d0bb509aa0da9ba49a23f77910f9c55e
4
- data.tar.gz: 1a2fae21783a6ea3a94546701e706b0b25f7be32c17081df3e3c6293ff4021ed
3
+ metadata.gz: 81621e3194b7fa621f902bdb48a4023e3d0d22e35b45a7b4127b246bc1c695a7
4
+ data.tar.gz: 257bd7d1df46752e6b12af1ba7801a9c988de183e9a2a8b97c86444be2c9946f
5
5
  SHA512:
6
- metadata.gz: 6ef0eb442d17ac9383e598faa71f140f2a2bc8274e6de3f3ef8dcadfc6a1364d6f5a45339dbad13b6481412c5c065116acdd3203e7b988ca17a8a1c95f14b7e9
7
- data.tar.gz: 998c1bceaa8e48c1a5f21853756a1fd8aa0dd14dc929cc209acc03041d97104e6c1743391e065db8ed9ab3747e469cc78bb9470f2b46f06f070b3c7b8471ca01
6
+ metadata.gz: 8bc9111159182e63896d3fde0d36e9bb8409a0c9953da3fe9b8bcf8a4e953449e132b41e52a9d3b38ecca2c67cf3e87b77352cf43fcb87e3f78f12acff9f02a9
7
+ data.tar.gz: f075a6b265dae7892dea5aae8bc0466adf32ddfb1ec178ebc8192843ea778be37b715a1b1da41b7768f78ab447c5b4a92b8ae5fab8e5f715b92345e2016cccd8
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 Moses Liao <moses.liao.sd@gmail.com>
3
+ Copyright (c) 2017-2019 Moses Liao <moses.liao.sd@gmail.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
@@ -45,6 +45,12 @@ lizard(
45
45
  language: 'swift,objectivec'
46
46
  ```
47
47
 
48
+ #### Multiple excludes
49
+
50
+ ```ruby
51
+ exclude: 'spec_helper.rb,fixtures/*'
52
+ ```
53
+
48
54
  #### XML reports
49
55
 
50
56
  ```ruby
@@ -41,7 +41,7 @@ module Fastlane
41
41
  command << "-L #{params[:length]}" if params[:length]
42
42
  command << "-a #{params[:arguments]}" if params[:arguments]
43
43
  command << "-i #{params[:number]}" if params[:number]
44
- command << "-x #{params[:exclude]}" if params[:exclude]
44
+ command << params[:exclude].split(",").map { |x| "-x #{x.strip}" }.join(" ").to_s if params[:exclude]
45
45
  command << "-t #{params[:working_threads]}" if params[:working_threads]
46
46
  command << "-E #{params[:extensions]}" if params[:extensions]
47
47
  command << "-s #{params[:sorting]}" if params[:sorting]
@@ -121,6 +121,7 @@ module Fastlane
121
121
  FastlaneCore::ConfigItem.new(key: :exclude,
122
122
  env_name: "FL_LIZARD_EXCLUDE",
123
123
  description: "Exclude files that match this pattern. * matches everything, ? matches any single character, \"./folder/*\" exclude everything in the folder recursively. Multiple patterns can be specified. Don't forget to add \"\" around the pattern",
124
+ is_string: true,
124
125
  optional: true),
125
126
  FastlaneCore::ConfigItem.new(key: :working_threads,
126
127
  env_name: "FL_LIZARD_WORKING_THREADS",
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Lizard
3
- VERSION = "1.2.0"
3
+ VERSION = "1.3.0"
4
4
  CLI_VERSION = "1.14.10"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-lizard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moses Liao
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-19 00:00:00.000000000 Z
11
+ date: 2019-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler