forked from chef-boneyard/chef-pedant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chef-pedant.gemspec
25 lines (23 loc) · 1019 Bytes
/
chef-pedant.gemspec
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
Gem::Specification.new do |s|
s.name = 'chef-pedant'
s.version = '1.0.13'
s.date = '2013-05-21'
s.summary = "Opscode Chef API Testing Framework"
s.authors = ["Opscode Software Engineering"]
s.email = '[email protected]'
s.require_paths = ['lib', 'spec']
s.files = Dir['lib/**/*'] + Dir['spec/**/*'] + Dir['bin/*'] + Dir['fixtures/**/*']
s.homepage = 'http://opscode.com'
s.bindir = 'bin'
s.executables = ['chef-pedant']
s.add_dependency('rspec', '~> 2.11.0')
s.add_dependency('activesupport', '~> 3.2.8') # For active_support/concern
s.add_dependency('mixlib-authentication', '~> 1.3.0')
s.add_dependency('mixlib-config', '~> 1.1.2')
s.add_dependency('mixlib-shellout', '~> 1.1.0')
s.add_dependency('rest-client', '~> 1.6.7')
s.add_dependency('rspec_junit_formatter', '~> 0.1.1')
s.add_dependency('net-http-spy', '~> 0.2.1')
s.add_dependency('erubis', '~> 2.7.0')
s.add_dependency('rspec-rerun', '= 0.1.1')
end