Sha256: c1bc2309ac173e85fad550eb8fb5813988083beb603f62c9424c181894d94478

Contents?: true

Size: 859 Bytes

Versions: 1

Compression:

Stored size: 859 Bytes

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mongoid/locker/version'

Gem::Specification.new do |spec|
  spec.name = 'mongoid-locker'
  spec.version = Mongoid::Locker::VERSION
  spec.authors = ['Aidan Feldman']
  spec.email = ['aidan.feldman@gmail.com']

  spec.summary = 'Document-level locking for MongoDB via Mongoid.'
  spec.description = 'Allows multiple processes to operate on individual documents in MongoDB while ensuring that only one can act at a time.'
  spec.homepage = 'https://github.com/mongoid/mongoid-locker'
  spec.license = 'MIT'

  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'mongoid', '>= 2.8'
  spec.add_runtime_dependency 'mongoid-compatibility', '>= 0.4.1'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mongoid-locker-1.0.0 mongoid-locker.gemspec