Skip to content

Commit

Permalink
Fix Performance/StringIdentifierArgument violation in site.rb and all…
Browse files Browse the repository at this point in the history
…ow activesupport 6 for windows tests (#9512)

Merge pull request 9512
  • Loading branch information
parkr committed Dec 29, 2023
1 parent b2e99a0 commit 901256a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -15,7 +15,7 @@ end
#

group :test do
gem "activesupport", "~> 7.0.0"
gem "activesupport", "< 7.1.0"
gem "cucumber", RUBY_VERSION >= "2.5" ? "~> 5.1.2" : "~> 4.1"
gem "httpclient"
gem "jekyll_test_plugin"
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll/site.rb
Expand Up @@ -49,7 +49,7 @@ def config=(config)

%w(safe lsi highlighter baseurl exclude include future unpublished
show_drafts limit_posts keep_files).each do |opt|
send("#{opt}=", config[opt])
send(:"#{opt}=", config[opt])
end

# keep using `gems` to avoid breaking change
Expand Down

0 comments on commit 901256a

Please sign in to comment.