-
Notifications
You must be signed in to change notification settings - Fork 0
/
em-dextras.gemspec
28 lines (23 loc) · 1.15 KB
/
em-dextras.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/em-dextras/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Rafael de F. Ferreira"]
gem.email = ["[email protected]"]
gem.description = %q{Utilities to help working with EventMachine deferrables.}
gem.summary = %q{Utilities to help working with EventMachine Deferrables. Includes probes for asynchronous tests and a DSL to chain deferrables.}
gem.homepage = "https://github.com/rafaeldff/em-dextras"
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 = "em-dextras"
gem.require_paths = ["lib"]
gem.version = Em::Dextras::VERSION
gem.add_runtime_dependency("eventmachine", [">= 0.12.10"])
gem.add_development_dependency("rspec")
gem.add_development_dependency("guard")
gem.add_development_dependency("guard-rspec")
gem.add_development_dependency("rb-inotify")
#for samples
gem.add_development_dependency("em-http-request")
gem.add_development_dependency("webmock")
end