forked from mkon/db_lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db_lock.gemspec
24 lines (20 loc) · 900 Bytes
/
db_lock.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'db_lock/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'db_lock'
s.version = DBLock::VERSION
s.licenses = ['MIT']
s.authors = ['mkon']
s.email = ['[email protected]']
s.homepage = 'https://github.com/mkon/db_lock'
s.summary = 'Obtain manual db/mysql locks'
s.description = 'Obtain manual db locks to guard blocks of code from parallel execution.' \
'Currently only supports mysql and ms-sql-server.'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'README.md']
s.add_dependency 'activerecord', '>= 3.0', '< 6'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rubocop', '= 0.59.2'
s.add_development_dependency 'rubocop-rspec', '1.30.0'
end