File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
lib/berkeley_library/logging Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1- # 0.2.8 (next )
1+ # 0.3.0 (2025-07-23 )
22
3- - Log ` HTTP_USER_AGENT `
3+ - Update to support Ruby 3.3+ and Rails 7+ exclusively.
4+ - Update Rubocop & Style changes.
5+ - Log ` HTTP_USER_AGENT ` .
46
57# 0.2.7 (2022-05-25)
68
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ require 'berkeley_library/logging/module_info'
1111
1212Gem ::Specification . new do |spec |
1313 spec . name = BerkeleyLibrary ::Logging ::ModuleInfo ::NAME
14- spec . author = BerkeleyLibrary ::Logging ::ModuleInfo ::AUTHOR
15- spec . email = BerkeleyLibrary ::Logging ::ModuleInfo ::AUTHOR_EMAIL
14+ spec . author = BerkeleyLibrary ::Logging ::ModuleInfo ::AUTHORS
15+ spec . email = BerkeleyLibrary ::Logging ::ModuleInfo ::AUTHOR_EMAILS
1616 spec . summary = BerkeleyLibrary ::Logging ::ModuleInfo ::SUMMARY
1717 spec . description = BerkeleyLibrary ::Logging ::ModuleInfo ::DESCRIPTION
1818 spec . license = BerkeleyLibrary ::Logging ::ModuleInfo ::LICENSE
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
2525 spec . required_ruby_version = ruby_version
2626
27- rails_version = '>= 6 '
27+ rails_version = '>= 7 '
2828
2929 spec . add_dependency 'activesupport' , rails_version
3030 spec . add_dependency 'amazing_print' , '~> 1.1'
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ module BerkeleyLibrary
22 module Logging
33 class ModuleInfo
44 NAME = 'berkeley_library-logging' . freeze
5- AUTHOR = 'David Moles' . freeze
6- AUTHOR_EMAIL = 'dmoles@berkeley.edu' . freeze
5+ AUTHORS = [ 'David Moles' , 'maría a. matienzo' ] . freeze
6+ AUTHOR_EMAILS = [ 'dmoles@berkeley.edu' , 'matienzo@berkeley.edu' ] . freeze
77 SUMMARY = 'Opinionated Ruby/Rails logging for UC Berkeley Library' . freeze
88 DESCRIPTION = 'A gem providing shared logging code for UC Berkeley Library gems and Rails applications' . freeze
99 LICENSE = 'MIT' . freeze
10- VERSION = '0.2.7 ' . freeze
10+ VERSION = '0.3.0 ' . freeze
1111 HOMEPAGE = 'https://github.com/BerkeleyLibrary/logging' . freeze
1212
1313 private_class_method :new
You can’t perform that action at this time.
0 commit comments