Skip to content

Commit 88239e4

Browse files
authored
Fix minimal Ruby version at br_danfe.gemspec (#192)
1 parent e90da03 commit 88239e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require:
22
- rubocop-performance
33

44
AllCops:
5-
TargetRubyVersion: 2.6
5+
TargetRubyVersion: 3.0
66
Exclude:
77
- bin/**/*
88
- vendor/bundle/**/*

br_danfe.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
1414
spec.test_files = `git ls-files -- { test,spec,features }/*`.split("\n")
1515
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
1616
spec.require_paths = ['lib']
17-
spec.required_ruby_version = '>= 2.6'
17+
spec.required_ruby_version = '>= 3.0'
1818

1919
spec.add_dependency 'barby', '0.6.8'
2020
spec.add_dependency 'br_documents', '>= 0.1.3'

0 commit comments

Comments
 (0)