fastlane-plugin-auth0_shipper 0.3.1 → 0.4.0
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: ef276dd7c9b9de5ba6a1420cac2dac7cad290738
|
|
4
|
+
data.tar.gz: 7fe3203001e5c88399cd365c2ab9b250d03b03c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d25717af1a29e738b0c66072a297f7ce04a583ec8b79f856e1c39de83c49eadc695816d922576eccdac6d6d5fc7d91abd9a217f166070ca7a3b6c7f93dc1074
|
|
7
|
+
data.tar.gz: 1246058f833f458acf4f64c9cc558bb56b545c27326151dcbac77eff6ef3e4a668abbba42b04dd24f53a6f5b98cbd88adc45342dc24308cc5ad8ac0f1a326aaf
|
|
@@ -13,8 +13,8 @@ module Fastlane
|
|
|
13
13
|
description: changelog_entry,
|
|
14
14
|
server_url: 'https://api.github.com'
|
|
15
15
|
}) unless params[:github_token].nil?
|
|
16
|
-
Actions::PodLibLintAction.run({})
|
|
17
|
-
Actions::PodPushAction.run({})
|
|
16
|
+
Actions::PodLibLintAction.run({allow_warnings: params[:pod_lint_allow_warnings]})
|
|
17
|
+
Actions::PodPushAction.run({allow_warnings: params[:pod_lint_allow_warnings]})
|
|
18
18
|
UI.success "Shipped #{tag}! 🚀"
|
|
19
19
|
end
|
|
20
20
|
|
|
@@ -58,6 +58,18 @@ module Fastlane
|
|
|
58
58
|
default_value: "CHANGELOG.md",
|
|
59
59
|
optional: true,
|
|
60
60
|
type: String)
|
|
61
|
+
FastlaneCore::ConfigItem.new(key: :local_run,
|
|
62
|
+
env_name: "AUTH0_SHIPPER_LOCAL_RUN",
|
|
63
|
+
description: "Avoid pushing changes to remote repository",
|
|
64
|
+
default_value: false,
|
|
65
|
+
optional: true,
|
|
66
|
+
type: Boolean),
|
|
67
|
+
FastlaneCore::ConfigItem.new(key: :pod_lint_allow_warnings,
|
|
68
|
+
env_name: "AUTH0_SHIPPER_POD_LINT_ALLOW_WARNINGS",
|
|
69
|
+
description: "Avoid allow warnings during pod linter",
|
|
70
|
+
default_value: false,
|
|
71
|
+
optional: true,
|
|
72
|
+
type: Boolean)
|
|
61
73
|
]
|
|
62
74
|
end
|
|
63
75
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-auth0_shipper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hernan Zalazar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06-
|
|
11
|
+
date: 2018-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: semantic
|