-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestbeat.gemspec
More file actions
26 lines (23 loc) · 903 Bytes
/
testbeat.gemspec
File metadata and controls
26 lines (23 loc) · 903 Bytes
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
Gem::Specification.new do |s|
s.name = 'testbeat'
s.version = '0.8.4'
s.date = '2022-12-12'
s.summary = 'REST acceptance testing framework'
s.description = 'Rspec spec_helper and Vagrant integration for HTTP level testing, on a box from the outside'
s.authors = ['Staffan Olsson']
s.email = 'solsson@gmail.com'
s.files = [
'lib/testbeat.rb',
'lib/rspec/spec_helper.rb',
'lib/vagrant/noderunner.rb',
'lib/vagrant/cookbook_decompiler.rb'
]
s.homepage = 'https://github.com/Reposoft/testbeat'
s.license = 'MIT'
s.required_ruby_version = '~> 2.0'
s.add_dependency "rspec", "~> 3.3"
s.add_dependency "hashie", '~> 0'
# used during development for debugging rspec contexts, but may not be completely cleaned out
#s.add_development_dependency "awesome_print", '~> 0'
s.add_dependency "awesome_print", '~> 0'
end