-
Notifications
You must be signed in to change notification settings - Fork 14
/
amqp-spec.gemspec
30 lines (26 loc) · 1.29 KB
/
amqp-spec.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
# encoding: utf-8
Gem::Specification.new do |gem|
gem.name = "amqp-spec"
gem.version = File.open('VERSION').read.strip
gem.summary = %q{Simple API for writing asynchronous EventMachine/AMQP specs. Supports RSpec and RSpec2.}
gem.description = %q{Simple API for writing asynchronous EventMachine and AMQP specs. Runs legacy EM-Spec based examples. Supports RSpec and RSpec2.}
gem.authors = ["Arvicco"]
gem.email = "arvitallian@gmail.com"
gem.homepage = %q{http://github.com/arvicco/amqp-spec}
gem.platform = Gem::Platform::RUBY
gem.date = Time.now.strftime "%Y-%m-%d"
# Files setup
versioned = `git ls-files -z`.split("\0")
gem.files = Dir['{bin,lib,man,spec,features,tasks}/**/*', 'Rakefile', 'README*',
'LICENSE*', 'VERSION*', 'HISTORY*', '.gitignore'] & versioned
gem.test_files = Dir['spec/**/*'] & versioned
gem.require_paths = ["lib"]
# RDoc setup
gem.has_rdoc = true
gem.rdoc_options.concat %W{--charset UTF-8 --main README.rdoc --title amqp-spec}
gem.extra_rdoc_files = ["LICENSE", "HISTORY", "README.rdoc"]
# Dependencies
gem.add_development_dependency(%q{rspec}, [">= 1.2.9"])
gem.add_development_dependency("amqp", ["~> 0.6.7"])
gem.add_dependency("bundler", [">= 1.0.0"])
end