-
Notifications
You must be signed in to change notification settings - Fork 23
/
mongoid-audit.gemspec
29 lines (24 loc) · 1.03 KB
/
mongoid-audit.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mongoid-audit/version'
Gem::Specification.new do |gem|
gem.name = "mongoid-audit"
gem.version = Mongoid::Audit::VERSION
gem.authors = ["Gleb Tv"]
gem.email = ["[email protected]"]
gem.description = %q{Mongoid Audit}
gem.summary = %q{Easily track model change history and mantain audit log with mongoid}
gem.homepage = "https://github.com/rs-pro/mongoid-audit"
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|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'mongoid'
gem.add_dependency 'mongoid-history'
gem.add_dependency 'activesupport'
gem.add_dependency 'kaminari-mongoid'
gem.add_dependency 'glebtv_mongoid_userstamp'
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
end