forked from roidrage/lograge
-
Notifications
You must be signed in to change notification settings - Fork 7
/
lograge.gemspec
30 lines (23 loc) · 1.09 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
# 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']
s.email = ['[email protected]', '[email protected]']
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' }
# 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 '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