-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstubb.gemspec
32 lines (29 loc) · 917 Bytes
/
stubb.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
26
27
28
29
30
31
32
Gem::Specification.new do |s|
s.name = 'stubb'
s.version = '0.2.0'
s.date = '2014-10-03'
s.summary = 'Specify REST API stubs using your file system'
s.description = 'Specify REST API stubs using your file system'
s.authors = ['Johannes Emerich']
s.email = '[email protected]'
s.homepage = 'http://github.com/knuton/stubb'
s.files = [
'lib/stubb.rb',
'lib/stubb/request.rb',
'lib/stubb/response.rb',
'lib/stubb/counter.rb',
'lib/stubb/combined_logger.rb',
'lib/stubb/finder.rb',
'lib/stubb/naive_finder.rb',
'lib/stubb/sequence_finder.rb',
'lib/stubb/match_finder.rb',
'lib/stubb/sequence_match_finder.rb',
'bin/stubb',
'LICENSE',
'README.markdown'
]
s.executables = ['stubb']
s.add_development_dependency 'rake'
s.add_runtime_dependency 'rack', '>=1.2.0'
s.add_runtime_dependency 'thor'
end