forked from arioch/puppet-percona
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
31 lines (23 loc) · 831 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source 'https://rubygems.org'
group :rake do
gem 'rake', (RUBY_VERSION =~ /^1.8/ ? '< 10.0.3' : nil)
gem 'puppet-lint', '>=0.2.0'
gem 'rspec'
gem 'rspec-expectations'
gem 'rspec-puppet', '>=0.1.3'
puppetversion = ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper', '>=0.2.0'
gem 'diff_matcher'
gem 'puppet-blacksmith'
## Ruby version madness
gem 'mime-types', (RUBY_VERSION =~ /^1.8/ ? '~> 1.25.1' : nil)
gem 'nokogiri', (RUBY_VERSION =~ /^1.8/ ? '~> 1.5.0' : nil)
gem 'timers', (RUBY_VERSION =~ /^1.8/ ? '~> 1.0.0' : nil)
end
group :vagrant do
gem 'guard'
gem 'guard-shell', '>= 0.4.0'
gem 'libnotify' if RUBY_PLATFORM.downcase.include?("linux")
gem 'growl' if RUBY_PLATFORM.downcase.include?("darwin")
end