summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Pinson <raphael.pinson@camptocamp.com>2015-08-05 13:00:55 +0200
committerRaphaël Pinson <raphael.pinson@camptocamp.com>2015-08-05 13:00:55 +0200
commit2ed8f49e199ffe3e234b9528fb8cb1c678a64f9e (patch)
tree694526ddbd5653c1aa7850edbb9fc339a88d6467
parentcf5cef24ec0ed799fb3d0bc7e916cb6dc4bd6d31 (diff)
Do not install some gems on 1.8
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 9582ffc..0cb5933 100644
--- a/Gemfile
+++ b/Gemfile
@@ -21,8 +21,8 @@ group :development, :unit_tests do
gem 'puppet-lint-file_source_rights-check', :require => false
gem 'puppet-lint-alias-check', :require => false
gem 'rspec-puppet-facts', :require => false
- gem 'github_changelog_generator', :require => false, :git => 'https://github.com/raphink/github-changelog-generator.git', :branch => 'dev/all_patches'
- gem 'puppet-blacksmith', :require => false
+ gem 'github_changelog_generator', :require => false, :git => 'https://github.com/raphink/github-changelog-generator.git', :branch => 'dev/all_patches' if RUBY_VERSION !~ /^1.8/
+ gem 'puppet-blacksmith', :require => false if RUBY_VERSION !~ /^1.8/
end
group :system_tests do