source 'https://rubygems.org' gemspec gem 'pry-coolline', '> 0.0', '< 1.0.0' # Cri 2.15.6 broke r10k and they can't be used together gem 'cri', '<= 2.15.5' if ENV['PUPPET_VERSION'] gem 'puppet', ENV['PUPPET_VERSION'] end # Evaluate Gemfile.local if it exists if File.exists? "#{__FILE__}.local" eval(File.read("#{__FILE__}.local"), binding) end # Evaluate ~/.gemfile if it exists if File.exists?(File.join(Dir.home, '.gemfile')) eval(File.read(File.join(Dir.home, '.gemfile')), binding) end if ENV['APPVEYOR'] == 'True' # R10k needs to be pinned to this until the next release after 3.1.1 # in order to not have symlinks and therefor work on windows gem 'r10k', git: 'https://github.com/puppetlabs/r10k.git' end