Skip to content

Commit 7300795

Browse files
committed
Add base64 and logger as a development dependencies
Since Ruby 3.4, the gem `base64` is a "bundled" gem, instead of a "default" gem, and needs to be added to the Gemfile. It is used in the `aws-sdk-cloudformation` gem, but they have not added it as a dependency to not break running older versions of Ruby, therefore we don't add it as a runtime dependency here either. Similar situation with `logger` which will be removed in Ruby 3.5.
1 parent 1d8aca8 commit 7300795

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cuffsert.gemspec

+2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ Gem::Specification.new do |spec|
2323
spec.add_runtime_dependency 'ruby-termios'
2424
spec.add_runtime_dependency 'rx'
2525

26+
spec.add_development_dependency 'base64'
2627
spec.add_development_dependency 'bundler', '~> 2.3'
2728
spec.add_development_dependency 'byebug'
29+
spec.add_development_dependency 'logger'
2830
spec.add_development_dependency 'rspec', '~> 3.0'
2931
spec.add_development_dependency 'rx-rspec', '~> 0.4.3'
3032
spec.add_development_dependency 'simplecov'

0 commit comments

Comments
 (0)