1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/docs/documentation/advanced-features/validation-of-variables/index.markdown
2016-08-23 18:04:57 -07:00

16 lines
395 B
Markdown

---
layout: default
title: Validation of variables
---
To validate a variable, each time before it is set, define a validation:
```ruby
validate :some_key do |key, value|
if value.length < 5
raise Capistrano::ValidationError, "Length of #{key} is too short!"
end
end
```
Multiple validations can be assigned to a single key. Validations will be executed in the order of registration.