forked from rails-engine/audit-log
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaudit-log.gemspec
23 lines (18 loc) · 869 Bytes
/
audit-log.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "audit-log/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "audit-log"
spec.version = AuditLog::VERSION
spec.authors = ["Jason Lee"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/rails-engine/audit-log"
spec.summary = "Trail audit logs (Operation logs) into the database for user behaviors, including a web UI to query logs"
spec.description = "Trail audit logs (Operation logs) into the database for user behaviors, including a web UI to query logs."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "kaminari", ">= 0.15"
spec.add_dependency "rails", ">= 5.2"
end