Skip to content

Commit

Permalink
update readme (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozantepe authored Nov 22, 2024
1 parent 5e7c81e commit c3964dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ Now, when you run fastlane, the Dynatrace plugin will manage the symbol files of
| server | The API endpoint for the Dynatrace environment (e.g. `https://environmentID.live.dynatrace.com` or `https://dynatrace-managed.com/e/environmentID`). | |
| cleanBuildArtifacts | Clean build artifacts after processing. | `false` |
| tempdir | (OPTIONAL) Custom temporary directory for the DTXDssClient. **The plugin does not take care of cleaning this directory.** | |
| debugMode | Enable debug logging. | `false` |
| customLLDBFrameworkPath | (OPTIONAL) Custom path to the LLDB framework used as runtime dependency by DTXDssClient (e.g. `/Users/test/Documents/LLDB.framework`). | |
| autoSymlinkLLDB | (OPTIONAL) Automatically find and create a symlink to the LLDB framework into the DTXDssClient's temporary folder. | `true` |
| debugMode | (OPTIONAL) Enable debug logging. | `false` |
| customLLDBFrameworkPath | *(iOS/tvOS only)* (OPTIONAL) Custom path to the LLDB framework used as runtime dependency by DTXDssClient (e.g. `/Users/test/Documents/LLDB.framework`). | |
| autoSymlinkLLDB | *(iOS/tvOS only)* (OPTIONAL) Automatically find and create a symlink to the LLDB framework into the DTXDssClient's temporary folder. | `true` |

## Example
Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
Expand Down
6 changes: 3 additions & 3 deletions lib/fastlane/plugin/dynatrace/actions/dynatrace_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,19 +223,19 @@ def self.available_options

FastlaneCore::ConfigItem.new(key: :debugMode,
env_name: "FL_UPLOAD_TO_DYNATRACE_DEBUG_MODE",
description: "Enable debug logging",
description: "(OPTIONAL) Enable debug logging",
default_value: false,
is_string: false,
optional: true),

FastlaneCore::ConfigItem.new(key: :customLLDBFrameworkPath,
env_name: "FL_UPLOAD_TO_DYNATRACE_LLDB_PATH",
description: "Custom path to the LLDB framework used as runtime dependency by DTXDssClient",
description: "(iOS/tvOS only) (OPTIONAL) Custom path to the LLDB framework used as runtime dependency by DTXDssClient",
optional: true),

FastlaneCore::ConfigItem.new(key: :autoSymlinkLLDB,
env_name: "FL_UPLOAD_TO_DYNATRACE_AUTO_LINK_LLDB",
description: "Automatically find and create a symlink to the LLDB framework into the DTXDssClient's temporary folder",
description: "(iOS/tvOS only) (OPTIONAL) Automatically find and create a symlink to the LLDB framework into the DTXDssClient's temporary folder",
type: Boolean,
default_value: true,
optional: true)
Expand Down
2 changes: 1 addition & 1 deletion spec/dynatrace_action_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def mock_config
FastlaneCore::ConfigItem.new(key: :dtxDssClientPath, type: String, optional: false),
FastlaneCore::ConfigItem.new(key: :appId, type: String, optional: false),
FastlaneCore::ConfigItem.new(key: :cleanBuildArtifacts, type: Object, optional: true),
FastlaneCore::ConfigItem.new(key: :tempdir, type: String, optional: false),
FastlaneCore::ConfigItem.new(key: :tempdir, type: String, optional: true),
FastlaneCore::ConfigItem.new(key: :debugMode, type: Object, optional: true),
FastlaneCore::ConfigItem.new(key: :symbolsfileAutoZip, type: Object, optional: false),
FastlaneCore::ConfigItem.new(key: :customLLDBFrameworkPath, type: String, optional: true),
Expand Down

0 comments on commit c3964dc

Please sign in to comment.