forked from ClosureTree/with_advisory_lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwith_advisory_lock.gemspec
30 lines (26 loc) · 1.17 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
30
# -*- encoding: utf-8 -*-
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([email protected])
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.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^test/})
gem.require_paths = %w(lib)
gem.add_runtime_dependency 'activerecord', '>= 3.2'
gem.add_runtime_dependency 'thread_safe'
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