-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshamrock.gemspec
24 lines (19 loc) · 968 Bytes
/
shamrock.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/shamrock/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Justin S. Leitgeb"]
gem.email = ["[email protected]"]
gem.summary = "Facilitates setting up stub services in your application"
gem.description = "Shamrock helps you to use stub services in your application by starting a rack service in a Thread"
gem.homepage = "http://github.com/jsl/shamrock"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "shamrock"
gem.require_paths = ["lib"]
gem.version = Shamrock::VERSION
gem.add_dependency('rack')
gem.add_development_dependency 'rake', '~> 0.9.2.2'
gem.add_development_dependency 'rspec', '~> 2.10.0'
gem.add_development_dependency 'simplecov', '~> 0.6.4'
end