File: em-spec.gemspec

package info (click to toggle)
ruby-em-spec 0.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 156 kB
  • ctags: 96
  • sloc: ruby: 500; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download
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
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-

require File.join(File.dirname(__FILE__), 'lib', 'em-spec', 'version')

Gem::Specification.new do |s|
  s.name = 'em-spec'
  s.version = EventMachine::Spec::VERSION
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Aman Gupta", "Julien Ammous"]
  s.summary = "BDD for Ruby/EventMachine"
  s.description = "Simple BDD API for testing asynchronous Ruby/EventMachine code"
  s.email = %q{schmurfy@gmail.com}
  s.extra_rdoc_files = ['README.rdoc']
  s.files = `git ls-files`.split("\n")
  s.homepage = %q{http://github.com/schmurfy/em-spec}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.7}
  s.test_files = `git ls-files`.split("\n").select{|f| f =~ /^test/}
  s.rubyforge_project = 'em-spec'

  # dependencies
  s.add_dependency 'rspec', '> 2.6.0'
  s.add_dependency 'bacon'
  s.add_dependency 'test-unit'
  s.add_dependency 'eventmachine'
  
  if RUBY_PLATFORM.downcase.include?("darwin")
    # also install growlnotify from the
    # Extras/growlnotify/growlnotify.pkg in Growl disk image
    s.add_development_dependency 'growl'
  end
  
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'guard-bundler'
  s.add_development_dependency 'rake', '= 0.8.7'

end