No description
Find a file
Krzysztof Wilczynski 726746649e Small re-factor. Changed if not to unless for code clarity.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
2011-04-29 23:18:58 +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 First version. Simple chomp function to use within Puppet DSL. 2011-04-29 18:10:04 +01:00
chop.rb First version. Simple chop function to use within Puppet DSL. 2011-04-29 18:09:57 +01:00
count.rb Minor changes. 2011-04-28 03:42:37 +01:00
delete_at.rb Make sure that we have string-encoded integer value. 2011-04-29 18:28:38 +01:00
empty.rb Adding support for strings and hashes to the function empty. 2011-04-29 18:27:52 +01:00
fact.rb Added check to ensure that given fact name is a string. 2011-04-29 20:58:28 +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 First version. Simple join function to use within Puppet DSL. 2011-04-26 00:02:59 +01:00
join_with_prefix.rb Re-factor of the original function. Now its behaviour is either to join 2011-04-26 00:05:20 +01:00
keys.rb Adding relevant code. 2011-04-29 04:36:28 +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 First version. Simple lstrip function to use within Puppet DSL. 2011-04-29 18:09:39 +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 First version. Simple prefix function to use within Puppet DSL. 2011-04-26 00:04:10 +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 Added support for strings to reverse. 2011-04-29 17:30:04 +01:00
rstrip.rb First version. Simple rstrip function to use within Puppet DSL. 2011-04-29 18:09:29 +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 First version. Simple str2bool function to use within Puppet DSL. 2011-04-29 20:13:27 +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 Added FalseClass and TrueClass to be identified as Boolean to the type function. 2011-04-29 20:05:44 +01:00
unique.rb Adding support for strings to the the function unique. 2011-04-29 18:40:07 +01:00
values.rb Adding relevant code. 2011-04-29 04:36:28 +01:00
values_at.rb Adding TODO for future reference. 2011-04-29 18:42:54 +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.