Skip to content

Commit

Permalink
chore(docs): add pact plugin manifest args attribute
Browse files Browse the repository at this point in the history
fixes #13
  • Loading branch information
YOU54F committed May 16, 2024
1 parent 2c9e241 commit da73d16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/plugin-driver-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The plugin manifest file describes what the plugin provides and how to load it.
| entryPoint | The main executable for the plugin |
| entryPoints | Optional map of additional entry points. This allows additional entry points for other operating systems (i.e. requiring a .bat file for Windows) |
| dependencies | List of system dependencies or plugins required to be able to execute this plugin |
| args | Optional, comma seperated list of arguments to pass to the plugin entrypoint |

Example of a manifest for a plugin written in Ruby that provides matching CSV files:

Expand All @@ -60,7 +61,8 @@ Example of a manifest for a plugin written in Ruby that provides matching CSV fi
"version": "0.0.0",
"executableType": "exec",
"minimumRequiredVersion": "2.7.2",
"entryPoint": "bundle exec main.rb"
"entryPoint": "bin/bundle",
"args": ["exec", "ruby", "main.rb"]
}
```

Expand Down

0 comments on commit da73d16

Please sign in to comment.