-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
lograge.gemspec
35 lines (28 loc) · 1.29 KB
/
lograge.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
29
30
31
32
33
34
35
# frozen_string_literal: true
require './lib/lograge/version'
Gem::Specification.new do |s|
s.name = 'lograge'
s.version = Lograge::VERSION
s.authors = ['Mathias Meyer', 'Ben Lovell', 'Michael Bianco']
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.metadata = {
'rubygems_mfa_required' => 'true',
'changelog_uri' => 'https://github.com/roidrage/lograge/blob/master/CHANGELOG.md'
}
# NOTE(ivy): Ruby version 2.5 is the oldest syntax supported by Rubocop.
s.required_ruby_version = '>= 2.5'
s.files = `git ls-files lib LICENSE.txt`.split("\n")
s.add_development_dependency 'base64'
s.add_development_dependency 'mutex_m'
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'rubocop', '~> 1.23'
s.add_development_dependency 'simplecov', '~> 0.21'
s.add_runtime_dependency 'actionpack', '>= 4'
s.add_runtime_dependency 'activesupport', '>= 4'
s.add_runtime_dependency 'railties', '>= 4'
s.add_runtime_dependency 'request_store', '~> 1.0'
end