forked from infochimps-labs/ironfan-homebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (33 loc) · 764 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
41
42
43
source "http://rubygems.org"
#
# Chef
#
gem 'ironfan', "~> 4.11.3"
gem 'berkshelf', "= 1.4.2" # FIXME: pins chef to the 10.16 branch.
gem 'parseconfig'
#
# Test drivers
#
group :test do
gem 'rake'
gem 'bundler', "~> 1"
gem 'rspec', "~> 2.5"
gem 'redcarpet', "~> 2"
gem 'cucumber', "~> 1.1"
end
#
# Development
#
group :development do
gem 'yard', "~> 0.6"
gem 'jeweler'
gem 'ruby_gntp'
# FIXME: Commented out until guard-chef stops breaking bundle update
# gem 'guard', "~> 1"
# gem 'guard-process', "~> 1"
# gem 'guard-chef', :git => 'git://github.com/infochimps-forks/guard-chef.git'
# gem 'guard-cucumber'
end
group :support do
gem 'pry' # useful in debugging
end