-
Notifications
You must be signed in to change notification settings - Fork 32
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
Formatting in Gemfile #216
base: master
Are you sure you want to change the base?
Conversation
Gemfile alternated use of single and double quotes. Unless using string interpolation, generally single quotes is a simpler choice. All Gem names are now single quoted.
Gemfile alternated use of single and double quotes. Unles using string interpolation, generally single quotes are a simpler choice. All Gem names now single quoted.
end | ||
|
||
feature %q{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use %q
only for strings that contain both single quotes and double quotes.
gem "rack-timeout", '0.0.4' # https://github.com/heroku/rack-timeout/issues/55 | ||
gem "sidekiq" | ||
gem "sinatra", require: false # Required for Sidekiq web interface | ||
# gem 'unicorn' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we use unicorn still?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably right. Adding back gem.
Gemfile alternated use of single and double quotes. Unles using string interpolation, generally single quotes are a simpler choice. All Gem names now single quoted.