forked from ClosureTree/with_advisory_lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwith_advisory_lock.gemspec
29 lines (24 loc) · 1.07 KB
/
with_advisory_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
25
26
27
28
29
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'with_advisory_lock/version'
Gem::Specification.new do |gem|
gem.name = "with_advisory_lock"
gem.version = WithAdvisoryLock::VERSION
gem.authors = ['Matthew McEachen']
gem.email = %w(matthew+github@mceachen.org)
gem.homepage = 'https://github.com/mceachen/with_advisory_lock'
gem.summary = %q{Advisory locking for ActiveRecord}
gem.description = %q{Advisory locking for ActiveRecord}
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^test/})
gem.require_paths = %w(lib)
gem.required_ruby_version = '>= 2.2.10'
gem.add_runtime_dependency 'activerecord', '>= 4.2'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'minitest-great_expectations'
gem.add_development_dependency 'minitest-reporters'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'appraisal'
end