Puppet Function: gitlab_ci_runner::to_toml
- Defined in:
-
lib/puppet/functions/gitlab_ci_runner/to_toml.rb
- Function type:
- Ruby 4.x API
Summary
Convert a data structure and output to TOML.
Overview
gitlab_ci_runner::to_toml(Hash $data) ⇒ String
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/puppet/functions/gitlab_ci_runner/to_toml.rb', line 5
Puppet::Functions.create_function(:'gitlab_ci_runner::to_toml') do
dispatch :to_toml do
required_param 'Hash', :data
return_type 'String'
end
def to_toml(data)
PuppetX::Gitlab::Dumper.new(data).toml_str
end
end
|