Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Declare missing dependencies for Ruby 3.5 #2032

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Dependencies lists are sorted
  • Loading branch information
dentarg committed Jul 11, 2024
commit 41dfde51f44793b218113eef579e88c70e42c308
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ gem 'kramdown'
gem 'liquid'
gem 'markaby'
gem 'nokogiri', '> 1.5.0'
gem 'ostruct'
gem 'pandoc-ruby', '~> 2.0.2'
gem 'rabl'
gem 'rdiscount', platforms: [:ruby]
Expand All @@ -51,7 +52,6 @@ gem 'simplecov', require: false
gem 'slim', '~> 4'
gem 'yajl-ruby', platforms: [:ruby]
gem 'zeitwerk'
gem 'ostruct'

# sass-embedded depends on google-protobuf
# which fails to be installed on JRuby and TruffleRuby under aarch64
Expand Down
2 changes: 1 addition & 1 deletion rack-protection/rack-protection.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ RubyGems 2.0 or newer is required to protect against public gem pushes. You can

# dependencies
s.add_dependency 'base64', '>= 0.1.0'
s.add_dependency 'logger', '>= 1.6.0'
s.add_dependency 'rack', '>= 3.0.0', '< 4'
s.add_dependency 'logger'
end
Loading