-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpry-auditlog.gemspec
23 lines (20 loc) · 982 Bytes
/
pry-auditlog.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pry-auditlog/version'
Gem::Specification.new do |spec|
spec.name = 'pry-auditlog'
spec.version = PryAuditlog::VERSION
spec.authors = ['Matt Greensmith', 'Cozy Services Ltd.']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Adds audit log capability to Pry'
spec.description = 'PryAuditlog is a plugin for the Pry REPL that enables logging of any combination of Pry input and output to a configured audit file.'
spec.homepage = 'http://github.com/mgreensmith/pry-auditlog'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ['lib']
spec.add_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rubocop'
end