No description
Find a file
Krzysztof Wilczynski 5fce8a7f54 Added ability to flatten the resulting array in the function zip.
This would allow for creating hashes on the fly from two arrays.

Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
2011-04-30 01:47:41 +01:00
abs.rb Changed wording in the error message. 2011-04-29 23:15:05 +01:00
bool2num.rb Minor changes. 2011-04-29 23:16:26 +01:00
capitalize.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:18:58 +01:00
chomp.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
chop.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
count.rb Adding support for hash and string to the function count. 2011-04-30 00:56:12 +01:00
delete_at.rb Moved to unless from if not for code clarity and changed wording 2011-04-30 00:57:24 +01:00
empty.rb Moved to unless from if not and removed TODO. 2011-04-30 00:58:37 +01:00
fact.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
is_array.rb First version. Simple is_array function to use within Puppet DSL. 2011-04-28 03:43:14 +01:00
is_hash.rb First version. Simple is_hash function to use within Puppet DSL. 2011-04-29 04:37:50 +01:00
is_string.rb First version. Simple is_string function to use within Puppet DSL. 2011-04-28 03:43:34 +01:00
join.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
join_with_prefix.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
keys.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
load_variables.rb First version. Improvment upon bool2num function found on the Internet. 2011-04-25 03:19:10 +01:00
lstrip.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
member.rb Renaming the file from includes.rb to member.rb. 2011-04-29 21:03:11 +01:00
num2bool.rb First version. Function opposite to the bool2num one. Converts 2011-04-25 03:47:31 +01:00
persistent_crontab_minutes.rb Minor changes. Added placeholder for :doc in Puppet's newfunction to fill later. 2011-04-23 01:18:52 +01:00
prefix.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
random_crontab_minutes.rb Minor changes. Added placeholder for :doc in Puppet's newfunction to fill later. 2011-04-23 01:18:52 +01:00
range.rb Changed wording from numeric to integer. 2011-04-29 04:19:30 +01:00
README Adding README file ... 2011-03-14 00:04:08 +00:00
reverse.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
rstrip.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
shuffle.rb Small re-factor of shuffle function. It is more compact now. 2011-04-29 17:29:14 +01:00
size.rb Added TODO for future reference. 2011-04-29 04:22:04 +01:00
str2bool.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
strftime.rb First version. Simple strftime function to use within Puppet DSL. 2011-04-28 03:44:28 +01:00
strip.rb First version. Simple strip function to use within Puppet DSL. 2011-04-29 18:08:45 +01:00
time.rb First version. Simple time function to use within Puppet DSL. 2011-04-28 03:44:11 +01:00
type.rb Moved to unless from if not and changed wording of few error messages. 2011-04-30 01:00:10 +01:00
unique.rb Moved to unless from if not plus removed surplus empty lines. 2011-04-30 00:59:18 +01:00
values.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
values_at.rb Small re-factor. Changed if not to unless for code clarity. 2011-04-29 23:30:32 +01:00
zip.rb Added ability to flatten the resulting array in the function zip. 2011-04-30 01:47:41 +01:00

Various functions to use within Puppet will be stored here.  Most of them
are to be run by Puppet in order to extend its Domain Specific Language (DSL)
abilities and functionality.