forked from infochimps-labs/ironfan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (35 loc) · 894 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
31
32
33
34
35
36
37
38
39
40
source "http://rubygems.org"
gem 'chef', "~> 10.16"
gem 'fog', "~> 1.2"
gem 'excon', "~> 0.21.0" # v0.22 breaks EC2 calls
gem 'formatador', "~> 0.2"
gem 'gorillib', "~> 0.5.0"
gem 'rbvmomi'
gem 'diff-lcs', "~> 1.2.5"
# Everything in the world is being a stupid dick about JSON versions. Pin it
# to the one that doesn't seem to angrify everyone.
gem 'json', "= 1.5.4"
group :development do
gem 'bundler', "~> 1.0"
gem 'rake'
gem 'rspec', "~> 2.8"
gem 'yard', ">= 0.7"
#
gem 'redcarpet', ">= 2.1"
gem 'oj', ">= 1.2"
end
group :support do
gem 'jeweler', ">= 1.6"
gem 'pry'
end
group :test do
gem 'simplecov', ">= 0.5", :platform => :ruby_19
#
gem 'guard', "~> 1"
gem 'guard-rspec'
gem 'guard-yard'
gem 'ruby_gntp'
gem 'ruby-debug19'
#
gem 'chef-zero'
end