diff options
author | aycabta <[email protected]> | 2021-08-09 20:35:41 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2021-08-10 02:36:00 +0900 |
commit | 638c72e162f1a478578c61bbbdf643e66058f62f (patch) | |
tree | 58f883cf94303ebdb31883e33429641fdce16ace /lib/rdoc | |
parent | b685c60bef44cbe9700efcc883b2e20322953148 (diff) |
[ruby/rdoc] Use single quote in Gemfile
https://github.com/ruby/rdoc/commit/e4b68d414c
Diffstat (limited to 'lib/rdoc')
-rw-r--r-- | lib/rdoc/Gemfile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/rdoc/Gemfile b/lib/rdoc/Gemfile index 4813c63655..83a4863794 100644 --- a/lib/rdoc/Gemfile +++ b/lib/rdoc/Gemfile @@ -3,10 +3,10 @@ source 'https://rubygems.org' gemspec group :development do - gem "rake" - gem "racc", "> 1.4.10" - gem "kpeg" - gem "test-unit" - gem "minitest" # for test_rdoc_rubygems_hook.rb - gem "rubocop" + gem 'rake' + gem 'racc', '> 1.4.10' + gem 'kpeg' + gem 'test-unit' + gem 'minitest' # for test_rdoc_rubygems_hook.rb + gem 'rubocop' end |