blob: a688da1fccd686d29a2624da29f0a7b4ec23e17e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
source "https://rubygems.org"
gemspec
# https://github.com/sj26/rspec_junit_formatter/pull/14
# rspec_junit_formatter isn't compatible with RSpec3 yet, but is fixed in
# master. Once it's released we should remove this.
gem "rspec_junit_formatter", :git => 'https://github.com/sj26/rspec_junit_formatter.git',
:ref => "147836c41fab23ff7b92806f34122c8e5f2ddcad"
gem "mixlib-shellout", github: "opscode/mixlib-shellout", branch: "master"
group :development do
gem "chef", github: "opscode/chef", branch: "master"
gem "sigar", :platform => "ruby"
gem 'plist'
# gem 'pry-debugger'
# gem 'pry-stack_explorer'
end
|