forked from nkeyes/philotic
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphilotic.gemspec
27 lines (22 loc) · 973 Bytes
/
philotic.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/philotic/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Nathan Keyes']
gem.email = ['[email protected]']
gem.description = %q{Lightweight, opinionated wrapper for using RabbitMQ headers exchanges}
gem.summary = %q{Lightweight, opinionated wrapper for using RabbitMQ headers exchanges}
gem.homepage = 'https://github.com/nkeyes/philotic'
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 = 'philotic'
gem.require_paths = ['lib']
gem.version = Philotic::VERSION
gem.licenses = ['MIT']
gem.add_dependency 'activesupport', '>= 3.2'
gem.add_dependency 'activerecord', '>= 3.2'
gem.add_dependency 'awesome_print', '~> 1.2'
gem.add_dependency 'bunny', '~> 1.2.1'
gem.add_dependency 'json', '~> 1.8'
gem.add_dependency 'thread'
end