forked from connamara/philotic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
philotic.gemspec
24 lines (21 loc) · 998 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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/philotic/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Nathan Keyes']
gem.email = ['nkeyes@gmail.com']
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 'amqp', '~> 1.2'
gem.add_dependency 'awesome_print', '~> 1.2'
gem.add_dependency 'json', '~> 1.8'
end