methodmissing / em-spec forked from tmm1/em-spec

Simple BDD API for testing asynchronous Ruby/EventMachine code

This URL has Read+Write access

commit  a5b7bddaaac1f97230d5fa4ee3427ed5f4fe680a
tree    eaeea72050313a340604b53cfb457d90d9debfdd
parent  a58379b359ebfde1d864f2a91c44e18230a91f97
em-spec / em-spec.gemspec
100644 22 lines (21 sloc) 0.722 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
spec = Gem::Specification.new do |s|
  s.name = 'em-spec'
  s.version = '0.1.2'
  s.date = '2009-02-15'
  s.summary = 'Bacon based BDD API for Ruby/EventMachine'
  s.email = "em-spec@tmm1.net"
  s.homepage = "http://github.com/tmm1/em-spec"
  s.description = 'Bacon based BDD API for Ruby/EventMachine'
  s.has_rdoc = false
  s.authors = ["Aman Gupta"]
  s.add_dependency('eventmachine', '>= 0.12.4')
  s.add_dependency('bacon', '>= 1.1.0')
  s.add_dependency('rspec', '>= 1.1.12')
  s.files = ["README",
             "lib/em/spec.rb",
             "lib/em/spec/bacon.rb",
             "lib/em/spec/rspec.rb",
             "lib/ext/fiber18.rb",
             "test/bacon_spec.rb",
             "test/rspec_spec.rb"]
end