summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-18(MODULES-1582) Improve % detectionPeter Souter
Avoids any validate commands that have %'s in them other than "... % ..."
2014-12-18(MODULES-1582) Specs for the new % placeholderPeter Souter
These specs are pretty much the same as the originals, but now check that the output has the correct replacement for file location
2014-12-18(MODULES-1582) Initial spike for % placeholderPeter Souter
This simply `gsub`'s the file path into where the % placeholder is.
2014-12-17Merge pull request #372 from ↵Morgan Haskel
poikilotherm/feature/master/validate_absolute_path_allow_arrays Allow array of pathes in validate_absolute_path
2014-12-17Merge pull request #368 from rfugina/basenameMorgan Haskel
Basename implementation
2014-12-17Added basename() based on Ruby's File.basenameRob Fugina
Based on dirname code. Includes RSpec tests and docs.
2014-12-17Merge pull request #374 from petems/MODULES-444-add_concat_multipleHunter Haugen
MODULES-444-Add concat multiple
2014-12-16Merge remote-tracking branch 'upstream/4.5.x' into merge_4.5.x_into_masterMorgan Haskel
Conflicts: metadata.json
2014-12-16Merge pull request #387 from hunner/remove_match_lineMorgan Haskel
Remove line match validation
2014-12-16Merge pull request #386 from jbondpdx/4.5.xMorgan Haskel
DOC-1095: edit file_line resource, match parameter
2014-12-16Remove line match validationHunter Haugen
The `match` attribute was validated to match `line`, except that in many cases (even the example given in the docs) a user would want to match a line entirely different from the new line. See comments on the original commit https://github.com/puppetlabs/puppetlabs-stdlib/commit/a06c0d8115892a74666676b50d4282df9850a119 and ask https://ask.puppetlabs.com/question/14366/file_line-resource-match-problems/ for further examples of confusion.
2014-12-16DOC-1095: edit file_line resource, match parameterjbondpdx
Was unclear and not accurate; rewrote the parameter, moved file_line from function list to resource section, added missing parameters for this resource.
2014-12-16Merge pull request #384 from mhaskel/doc_fixes_from_masterColleen Murphy
Doc fixes from master
2014-12-16Added a note that stdlib no longer ships with PE 3.7+jbondpdx
Users didn't realize we stopped shipping stdlib module with PE. I added this information to the stdlib readme.
2014-12-16FM-1523: Added module summary to metadata.jsonjbondpdx
2014-12-16Merge pull request #373 from jbondpdx/stdlib-readme-fixMorgan Haskel
Add to Readme: Stdlib no longer ships with PE
2014-12-16Merge pull request #370 from jbondpdx/masterMorgan Haskel
FM-1523: Added module summary to metadata.json
2014-12-15Merge pull request #383 from mhaskel/doc_updateTravis Fields
Update README for updated member() functionality
2014-12-15Update README for updated member() functionalityMorgan Haskel
2014-12-15Merge pull request #381 from mhaskel/4.5.0-prepTravis Fields
4.5.0 prep
2014-12-154.5.0 prepMorgan Haskel
2014-12-09Merge pull request #376 from cmurphy/masterMorgan Haskel
Update .travis.yml, Gemfile, Rakefile, and CONTRIBUTING.md
2014-12-08Update .travis.yml, Gemfile, Rakefile, and CONTRIBUTING.mdColleen Murphy
2014-12-04(MODULES-444) - Real meat of the changePeter Souter
This is the core change, we now go through the array and add it to the first element, instead of just two arguments.
2014-12-04(MODULES-444) Change argument restriction to < 2Peter Souter
2014-12-04(MODULES-444) Update docs with new functionalityPeter Souter
2014-12-04(MODULES-444) - Check for accepting > 2 argsPeter Souter
2014-12-04(MODULES-444) Change test to > 2 argumentsPeter Souter
Also add extra test for just 1 argument
2014-12-04(MODULES-444) Acceptance for multiple arraysPeter Souter
Acceptance test to take multiple arrays for concatenation
2014-12-04(MODULES-444) Acceptance test for primitivesPeter Souter
`concat` should be able to concat arrays and primitives
2014-12-04(MODULES-444) Add specs for new behaviourPeter Souter
`concat` can now take multiple arguments
2014-11-25Added a note that stdlib no longer ships with PE 3.7+jbondpdx
Users didn't realize we stopped shipping stdlib module with PE. I added this information to the stdlib readme.
2014-11-25FM-1523: Added module summary to metadata.jsonjbondpdx
2014-11-25Allow array of pathes in validate_absolute_pathOliver Bertuch
2014-11-21Merge pull request #371 from cyberious/SLESSupportMorgan Haskel
FM-2020 SLES Support verified
2014-11-21FM-2020 SLES Support verifiedTravis Fields
2014-11-20FM-1523: Added module summary to metadata.jsonjbondpdx
2014-11-17Merge pull request #367 from mhaskel/future_parser_fixColleen Murphy
Need to convert strings and fixnums to arrays
2014-11-17Need to convert strings and fixnums to arraysMorgan Haskel
2014-11-13Merge pull request #319 from Spredzy/member_array_in_arrayHunter Haugen
(MODULES-1329) Allow member to look for array
2014-11-13Merge pull request #365 from dalen/range-integersHunter Haugen
Make the range function work with integers
2014-11-12Merge pull request #366 from mhaskel/merge_4.4.xHunter Haugen
Merge 4.4.x
2014-11-12(MODULES-1329) Allow member function to look for arrayYanis Guenane
Currently, the member function allows one to only find if a variable is part of an array. Sometimes it is useful to find if an array is part of a bigger array for validation purpose.
2014-11-12Add range tests for numeric with step and mixed argumentsErik Dalén
2014-11-12Make the range function work with integersErik Dalén
This is needed for the future parser which actually treats numbers as numbers and strings as strings. With this patch you can use range(1,5) instead of having to quote them like range('1','5').
2014-11-12(maint) Fix indentation of range functionErik Dalén
2014-11-11Merge pull request #363 from hunner/fix_windowsMorgan Haskel
Fix exclude windows test on ensure_package
2014-11-11Fix exclude windows test on ensure_packageTravis Fields
Update to fix ensure_resource as well
2014-11-11Merge pull request #358 from hunner/fix_typeMorgan Haskel
Correct type() logic
2014-11-11Correct type() logicHunter Haugen
It should NOT run if the future parser is enabled