forked from roidrage/lograge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lograge.gemspec
22 lines (18 loc) · 850 Bytes
/
lograge.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require './lib/lograge/version'
Gem::Specification.new do |s|
s.name = 'lograge'
s.version = Lograge::VERSION
s.authors = ['Mathias Meyer', 'Ben Lovell']
s.email = ['meyer@paperplanes.de', 'benjamin.lovell@gmail.com']
s.homepage = 'https://github.com/roidrage/lograge'
s.summary = "Tame Rails' multi-line logging into a single line per request"
s.description = "Tame Rails' multi-line logging into a single line per request"
s.license = 'MIT'
s.files = `git ls-files lib LICENSE.txt`.split("\n")
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '0.46.0'
s.add_runtime_dependency 'activesupport', '>= 4'
s.add_runtime_dependency 'actionpack', '>= 4'
s.add_runtime_dependency 'railties', '>= 4'
s.add_runtime_dependency 'request_store', '~> 1.0'
end