-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathactive_publisher.gemspec
More file actions
41 lines (34 loc) · 1.77 KB
/
active_publisher.gemspec
File metadata and controls
41 lines (34 loc) · 1.77 KB
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
40
41
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_publisher/version'
Gem::Specification.new do |spec|
spec.name = "active_publisher"
spec.version = ActivePublisher::VERSION
spec.authors = ["Brian Stien","Adam Hutchison","Brandon Dewitt","Devin Christensen","Michael Ries"]
spec.email = ["brianastien@gmail.com","liveh2o@gmail.com","brandonsdewitt@gmail.com","quixoten@gmail.com","michael@riesd.com"]
spec.description = %q{A library for publshing messages to RabbitMQ}
spec.summary = %q{Aims to make publishing work across MRI and jRuby painless and add some nice features like automatially publishing lifecycle events for ActiveRecord models.}
spec.homepage = "https://github.com/mxenabled/active_publisher"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
if ENV['PLATFORM'] == "java" || ::RUBY_PLATFORM == 'java'
spec.platform = "java"
spec.add_dependency 'march_hare', '~> 4.4'
else
spec.add_dependency 'bunny', '~> 2.1'
end
spec.required_ruby_version = '>= 3.1.0'
spec.add_dependency 'activesupport', '>= 6.0'
spec.add_dependency 'concurrent-ruby'
spec.add_development_dependency "benchmark-ips"
spec.add_development_dependency "bundler"
spec.add_development_dependency "connection_pool"
spec.add_development_dependency "fakeredis"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.2"
end