-
Notifications
You must be signed in to change notification settings - Fork 0
/
untied-publisher.gemspec
36 lines (31 loc) · 1.39 KB
/
untied-publisher.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
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'untied-publisher/version'
Gem::Specification.new do |gem|
gem.name = "untied-publisher"
gem.version = Untied::Publisher::VERSION
gem.authors = ["Guilherme Cavalcanti"]
gem.email = ["guiocavalcanti@gmail.com"]
gem.description = "Provides the Publisher part of the Untied gem."
gem.summary = "Untied is a Observer Pattern implementation for distributed systems. Think as a cross-application ActiveRecord::Observer. This gem handles the publishing of events"
gem.homepage = "http://github.com/redu/untied"
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{^(spec)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rspec"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "rake"
gem.add_runtime_dependency "activerecord"
gem.add_runtime_dependency "amqp"
gem.add_runtime_dependency "configurable"
gem.add_runtime_dependency "json"
gem.add_runtime_dependency "representable"
gem.add_runtime_dependency "bunny", ">= 0.0.9.pre13"
if RUBY_VERSION < "1.9"
gem.add_development_dependency "ruby-debug"
else
gem.add_development_dependency "debugger"
end
end