-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgorynich.gemspec
29 lines (23 loc) · 970 Bytes
/
gorynich.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
$:.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'gorynich/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'gorynich'
spec.version =
if ENV['BUILDVERSION'].to_i > 0
"#{Gorynich::VERSION}.#{ENV['BUILDVERSION'].to_i}"
else
Gorynich::VERSION
end
spec.authors = ['Poliev Alexey', 'Samoilenko Yuri']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Multitenancy for Rails and subsystems'
spec.description = 'Multitenancy for Rails including ActiveRecord, ActionCable, ActiveJob and other subsystems'
spec.homepage = 'https://github.com/RND-SOFT/gorynich'
spec.license = 'MIT'
spec.files = Dir['{config}/**/*', '{lib}/**/*', 'LICENSE', 'Rakefile', 'README.md']
spec.add_dependency 'diplomat', '~> 2'
spec.add_dependency 'railties', '>= 6.1'
spec.test_files = Dir['spec/**/*']
end