-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarbonyte.gemspec
31 lines (26 loc) · 1.18 KB
/
carbonyte.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'carbonyte/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'carbonyte'
spec.version = Carbonyte::VERSION
spec.authors = ['iMacTia']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/iMacTia/carbonyte'
spec.summary = 'Build Microservices-oriented Architectures with ease'
spec.description = 'Carbonyte is the core of great Microservices-oriented Architectures.'
spec.license = 'MIT'
# Expose spec folder and spec/support to plugins
spec.files = Dir['{app,config,db,lib,spec}/**/*', 'Rakefile', 'README.md']
spec.require_paths = %w[lib spec/support]
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
spec.add_dependency 'interactor-rails', '~> 2.0'
spec.add_dependency 'jsonapi-serializer', '~> 2.0'
spec.add_dependency 'lograge', '~> 0.11'
spec.add_dependency 'logstash-event', '~> 1.2'
spec.add_dependency 'pundit', '~> 2.1'
spec.add_dependency 'rails', '~> 6.1'
spec.add_dependency 'request_store', '~> 1.5'
end