Skip to content

Commit

Permalink
Patch: Add ostruct as an explicit require
Browse files Browse the repository at this point in the history
  • Loading branch information
sirwolfgang committed Jul 31, 2024
1 parent a67d93c commit acd3e2a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# inherit_from: .rubocop_todo.yml
require:
- rubocop-rake
- rubocop-rspec
AllCops:
NewCops: enable
Include:
- '**/Gemfile'
- '**/Rakefile'
Expand Down
2 changes: 2 additions & 0 deletions jwt_keeper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rake'
spec.add_development_dependency 'yard'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rake'
spec.add_development_dependency 'rubocop-rspec'
spec.add_development_dependency 'dotenv'
spec.add_development_dependency 'pry'

Expand Down
2 changes: 2 additions & 0 deletions lib/jwt_keeper/configuration.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require 'ostruct'

module JWTKeeper
class Configuration < OpenStruct
DEFAULTS = {
Expand Down
2 changes: 1 addition & 1 deletion lib/jwt_keeper/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Gem Version
module JWTKeeper
VERSION = '6.1.2'.freeze
VERSION = '6.1.3'.freeze
end

0 comments on commit acd3e2a

Please sign in to comment.