summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-16Merge pull request #211 from justinstoller/bug/master/FM-1951-ensure-gitMorgan Haskel
(FM-1951) Ensure Git is installable on EL 5 platforms
2014-10-16(FM-1951) Ensure Git is installable on EL 5 platformsJustin Stoller
Git is not installed on EL 5, but it is not in the repos either. With this patch, if we are going to install git on an EL 5 platform we first ensure epel is installed(FM-1951) Ensure Git is installable on EL 5 platforms
2014-09-29Convert specs to RSpec 2.99.2 syntax with TranspecIgor Galić
This conversion is done by Transpec 2.3.7 with the following command: transpec * 22 conversions from: it { should ... } to: it { is_expected.to ... } * 19 conversions from: obj.should to: expect(obj).to * 15 conversions from: == expected to: eq(expected) * 5 conversions from: it { should_not ... } to: it { is_expected.not_to ... } * 2 conversions from: its(:attr) { } to: describe '#attr' do subject { super().attr }; it { } end * 2 conversions from: obj.should_not to: expect(obj).not_to * 2 conversions from: proc { }.should to: expect { }.to * 1 conversion from: be_false to: be_falsey * 1 conversion from: be_true to: be_truthy For more details: https://github.com/yujinakayama/transpec#supported-conversions
2014-09-17Merge pull request #207 from sodabrew/excludes_stringAaron Stone
Handle both Array/Enumerable and String values for excludes parameter
2014-09-17Handle both Array/Enumerable and String values for excludes parameterAaron Stone
Thanks to @revhazroot for identifying the problem that excludes with a string or single-element array fails on Ruby >= 1.9.
2014-09-17Merge pull request #206 from sodabrew/whitespace_p4Aaron Stone
Remove excess whitespace
2014-09-17Remove excess whitespaceAaron Stone
2014-09-17Merge pull request #209 from hunner/global_defaultTravis Fields
(MODULES-428) Remove dummy warning
2014-09-16(MODULES-428) Remove dummy warningHunter Haugen
Puppet started raising a warning about multiple default providers due to a change in puppet. The dummy provider exists to raise an error when `provider` is not specified because there is no way to declare `provider` as a required attribute in the type. Even passing a `provider` value did not get rid of the "multiple default providers found" warning however. This commit causes the dummy provider to be the defacto default for all resources which do not have an explicit provider declared, as the posix feature is available on basically every operating system on which vcsrepo works. (There is no way to create an "always default" provider.)
2014-09-16Merge pull request #208 from sodabrew/simplecov_not_1.8.7Hunter Haugen
Disable simplecov on Ruby 1.8.7
2014-09-15Merge branch '1.1.x'Hunter Haugen
2014-09-14Disable simplecov on Ruby 1.8.7Aaron Stone
2014-09-10Merge pull request #204 from cyberious/1.1.xHunter Haugen
Fix issue with puppet_module_install, removed and using updated method f...
2014-09-10Fix issue with puppet_module_install, removed and using updated method from ↵Travis Fields
beaker core copy_module_to
2014-08-29Merge pull request #203 from mhaskel/spec_updatesAshley Penney
Update spec_helper for more consistency
2014-08-28Update spec_helper for more consistencyMorgan Haskel
2014-08-20Change uid by Puppet execution APIPaul Chechetin
2014-07-14Merge pull request #196 from hunner/release_1.1.0Morgan Haskel
Release 1.1.0
2014-07-14Release 1.1.0Hunter Haugen
Summary: This release adds a Perforce provider* and corrects the git provider behavior when using `ensure => latest`. *(Only git provider is currently supported.) Features: - New Perforce provider Bugfixes: - (MODULES-660) Fix behavior with `ensure => latest` and detached HEAD - Spec test fixes
2014-07-14Merge branch 'master' into 1.0.xHunter Haugen
2014-07-14Merge pull request #195 from hunner/fix_metadataAshley Penney
Fix metadata.json to match checksum
2014-07-14Fix metadata.json to match checksumHunter Haugen
2014-07-14Merge pull request #194 from justinstoller/maint/1.0.x/this_is_confusingHunter Haugen
(maint) Use `copy_module_to` in `beaker_helper.rb`
2014-07-14(maint) Use `copy_module_to` in `beaker_helper.rb`Justin Stoller
Previously we were using `puppet_module_install()`. Which was ported from Beaker-RSpec. Unfortunately for our heros that method has been refactored since this was ran last. The method `puppet_module_install()` in Beaker installs from the public forge, while the previous behavior, installing via scp from the current directory, has moved to the method `copy_module_to`. This updates the helper for the beaker tests to use the updated method.
2014-07-14Merge pull request #187 from p4paul/masterHunter Haugen
Update Markdown with missing Perforce details.
2014-07-11Merge pull request #193 from hunner/fix_helperHunter Haugen
The helper calls host outside of an each loop
2014-07-11The helper calls host outside of an each loopHunter Haugen
2014-07-11Merge pull request #192 from hunner/fix_lintHunter Haugen
Fix lint errors
2014-07-11Fix lint errorsHunter Haugen
2014-07-11Merge branch '1.0.x'Hunter Haugen
2014-07-11Merge pull request #173 from hunner/mod_660Ashley Penney
(MODULES-660) Correct detached HEAD on latest
2014-07-11(MODULES-660) Correct detached HEAD on latestHunter Haugen
Previously vcsrepo detached HEAD on checkout which caused further branch revisions to fail. This corrects the behavior, and works on git 1.7, 1.8, 1.9, and 2.0
2014-07-10Merge pull request #191 from klynton/masterHunter Haugen
Update README.markdown to fix the formatting around the officially supported note.
2014-07-10Merge pull request #188 from hunner/rm_modfileAshley Penney
Just use metadata now
2014-07-09Update README.markdownKlynton Jessup
Fixed a missing '*' around the note.
2014-07-08Merge merge lint changesPaul Allen
2014-07-03Merge pull request #189 from petems/MODULES-1014-add_beaker_test_noopHunter Haugen
(MODULES-1014) Add rspec for noop mode
2014-07-03(MODULES-1014) Add rspec for noop modePeter Souter
2014-07-02Just use metadata nowHunter Haugen
2014-07-02Update Markdown with missing Perforce details.Paul Allen
Fix tabs/spaces in p4.rb
2014-06-30Merge pull request #171 from p4paul/masterHunter Haugen
Basic Perforce provider
2014-06-30Merge pull request #186 from hunner/release_1.0.2Ashley Penney
Release 1.0.2
2014-06-30Merge pull request #181 from jbussdieker/fix_resource_change_every_checkinAaron Stone
Fix issue with node changing every checkin
2014-06-30Release 1.0.2Hunter Haugen
Summary: This supported release adds SLES 11 to the list of compatible OSs and documentation updates for support.
2014-06-30Fix issue with node changing every checkinJoshua B. Bussdieker
2014-06-30Merge pull request #185 from cmurphy/masterHunter Haugen
Synchronize .travis.yml
2014-06-30Update Gemfile for .travis.yml defaultsColleen Murphy
2014-06-27Merge branch '1.0.x'Hunter Haugen
2014-06-27Merge pull request #184 from hunner/patch_specAshley Penney
Patch misuse of apply_manifest_on
2014-06-27Patch misuse of apply_manifest_onHunter Haugen