-
-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27b3b06
commit 7cb5b0a
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ Gemfile.lock | |
coverage | ||
gemfiles/*.lock | ||
pkg/* | ||
vendor/bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Lograge | ||
VERSION = '0.11.2' | ||
VERSION = '0.12.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,17 @@ 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.authors = ['Mathias Meyer', 'Ben Lovell', 'Michael Bianco'] | ||
s.email = ['[email protected]', '[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' } | ||
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' | ||
|