fastlane-plugin-docc 1.0.0 → 1.1.1
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 +4 -4
- data/LICENSE +1 -1
- data/README.md +6 -5
- data/lib/fastlane/plugin/docc/actions/docc_action.rb +7 -1
- data/lib/fastlane/plugin/docc/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e249e8037f7897b6069b1774b41720123a1b5845ecdce69b28655140dc8b431f
|
4
|
+
data.tar.gz: 943fccddc7b7103c1e08d05191ea0f7033844a8af549bd0885f5cbee97ebf811
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9db6495645524d26418e2dc81f99b1eb97bf24b4e05e9cbf680eaebe99cce040a104e32254bab26774e65e0076b87dd03c2c46bd718eecb990a9950bf9d7f9af
|
7
|
+
data.tar.gz: 3694168749acc631c749cc314394eb6a1df911be411a2969117320b2e57624d5a79648e92b215af79c4601b897096dc875a5438da8bd0c9362bb2ea6df7d626e
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2021 Kukurijek <
|
3
|
+
Copyright (c) 2021-2025 Kukurijek <nemanja82filipo@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
@@ -29,11 +29,12 @@ docc(
|
|
29
29
|
|
30
30
|
## List of all Parameters
|
31
31
|
|
32
|
-
| Key | Description
|
33
|
-
| ----------------- |
|
34
|
-
| scheme | The scheme you want generate DocC for.
|
35
|
-
| derived_data_path | The path to write the DocC to.
|
36
|
-
| destination
|
32
|
+
| Key | Description | default value |
|
33
|
+
| ----------------- | ------------------------------------------------------------- | ------------- |
|
34
|
+
| scheme | The scheme you want generate DocC for. | |
|
35
|
+
| derived_data_path | The path to write the DocC to. | |
|
36
|
+
| destination | The destination of the project (required for swift packages). | |
|
37
|
+
| configuration | The configuration for building the project (e.g. 'Debug'). | |
|
37
38
|
|
38
39
|
## Run tests for this plugin
|
39
40
|
|
@@ -10,6 +10,7 @@ module Fastlane
|
|
10
10
|
command << "-scheme #{params[:scheme]}"
|
11
11
|
command << "-derivedDataPath #{params[:derived_data_path]}" unless params[:derived_data_path].nil?
|
12
12
|
command << "-destination #{params[:destination]}" unless params[:destination].nil?
|
13
|
+
command << "-configuration #{params[:configuration]}" unless params[:configuration].nil?
|
13
14
|
|
14
15
|
shell_command = command.join(' ')
|
15
16
|
UI.message(shell_command.to_s)
|
@@ -55,7 +56,12 @@ module Fastlane
|
|
55
56
|
type: String),
|
56
57
|
FastlaneCore::ConfigItem.new(key: :destination,
|
57
58
|
env_name: "DESTINATION",
|
58
|
-
description: "The destination of project (required for swift packages)",
|
59
|
+
description: "The destination of the project (required for swift packages)",
|
60
|
+
optional: true,
|
61
|
+
type: String),
|
62
|
+
FastlaneCore::ConfigItem.new(key: :configuration,
|
63
|
+
env_name: "CONFIGURATION",
|
64
|
+
description: "The configuration for building the project (e.g. 'Debug')",
|
59
65
|
optional: true,
|
60
66
|
type: String)
|
61
67
|
]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-docc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kukurijek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -137,7 +137,7 @@ dependencies:
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 2.176.0
|
139
139
|
description:
|
140
|
-
email:
|
140
|
+
email: nemanja82filipo@gmail.com
|
141
141
|
executables: []
|
142
142
|
extensions: []
|
143
143
|
extra_rdoc_files: []
|