style: standardize quoting for pg gem

- Changed single quotes to double quotes for the 'pg' gem in the production group of the Gemfile.

This change enhances consistency in the Gemfile by standardizing the quoting style.
This commit is contained in:
songtianlun 2025-01-21 09:11:00 +08:00
parent 5fd9573cf2
commit ac199af963

View File

@ -62,7 +62,7 @@ group :development do
end
group :production do
gem 'pg', '~> 1.5'
gem "pg", "~> 1.5"
end
group :test do