File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/main/kotlin/com/salesforce/revoman/output Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ endif::[]
1818:pmtemplates: src/integrationTest/resources/pm-templates
1919:imagesdir: docs/images
2020:prewrap!:
21- :revoman-version: 0.5.0
21+ :revoman-version: 0.5.1
2222
2323'''
2424
@@ -487,7 +487,7 @@ CAUTION: The recommendation is not to add too much code in <<Pre-req and Post-re
487487==== Read Mutable Environment as Postman Environment JSON format
488488
489489You may want to troubleshoot manually with Postman using the Mutable environment built during the ReṼoman execution.
490- `rundown.getEnvInPostmanEnvJSONFormat ()` converts the mutable environment into a Postman JSON format,
490+ `rundown.envInPostmanEnvJSONFormat ()` converts the mutable environment into a Postman JSON format,
491491so you can copy and import that conveniently into Postman.
492492
493493==== `pmEnvSnapshot` in each StepReport
Original file line number Diff line number Diff line change 66 * ************************************************************************************************
77 */
88const val GROUP_ID = " com.salesforce.revoman"
9- const val VERSION = " 0.5.0 "
9+ const val VERSION = " 0.5.1 "
1010const val ARTIFACT_ID = " revoman"
1111const val STAGING_PROFILE_ID = " 1ea0a23e61ba7d"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ data class Rundown(
2222) {
2323 @get:JvmName(" immutableEnv" ) val immutableEnv: Map <String , Any ?> by lazy { mutableEnv.toMap() }
2424
25- @get:JvmName(" postmanEnvJson " )
25+ @get:JvmName(" envInPostmanEnvJSONFormat " )
2626 val envInPostmanEnvJSONFormat: String by lazy {
2727 moshiReVoman.prettify(moshiReVoman.asFormatString(fromMap(mutableEnv, moshiReVoman)))
2828 }
You can’t perform that action at this time.
0 commit comments