-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using double quotes by default
I give up: I wanted to try to use the "community default", but all my tooling (snippets etc) is set up using double quotes, so it's just friction which is annoying. Anyway it seems like the community is far from being in agreement on this topic: rubocop/rubocop#5306
- Loading branch information
Showing
132 changed files
with
1,852 additions
and
1,851 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,75 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
ruby '3.2.1' | ||
ruby "3.2.1" | ||
|
||
gem 'rails', '~> 6.1.5', '>= 6.1.5.1' | ||
gem "rails", "~> 6.1.5", ">= 6.1.5.1" | ||
|
||
gem 'actionpack-action_caching' # to support pre rails-4 style action caching | ||
gem 'audited' | ||
gem 'bootsnap' | ||
gem 'coffee-rails' | ||
gem 'geocoder' | ||
gem 'haml-rails' | ||
gem 'http' | ||
gem 'jbuilder' | ||
gem 'jsbundling-rails' | ||
gem 'memcachier' | ||
gem 'net-imap', require: false | ||
gem 'net-pop', require: false | ||
gem 'net-smtp', require: false | ||
gem 'omniauth-facebook' | ||
gem 'omniauth-rails_csrf_protection' | ||
gem 'pg' | ||
gem 'pry-rails' | ||
gem 'puma' | ||
gem 'rack-attack' | ||
gem 'rails-observers' # to support pre rails-4 style cache sweeping | ||
gem 'redcarpet' # Markdown | ||
gem 'rollbar' | ||
gem 'rss' | ||
gem 'sassc-rails' | ||
gem 'sprockets' | ||
gem 'stimulus-rails' | ||
gem 'strip_attributes' | ||
gem 'test-unit' | ||
gem "actionpack-action_caching" # to support pre rails-4 style action caching | ||
gem "audited" | ||
gem "bootsnap" | ||
gem "coffee-rails" | ||
gem "geocoder" | ||
gem "haml-rails" | ||
gem "http" | ||
gem "jbuilder" | ||
gem "jsbundling-rails" | ||
gem "memcachier" | ||
gem "net-imap", require: false | ||
gem "net-pop", require: false | ||
gem "net-smtp", require: false | ||
gem "omniauth-facebook" | ||
gem "omniauth-rails_csrf_protection" | ||
gem "pg" | ||
gem "pry-rails" | ||
gem "puma" | ||
gem "rack-attack" | ||
gem "rails-observers" # to support pre rails-4 style cache sweeping | ||
gem "redcarpet" # Markdown | ||
gem "rollbar" | ||
gem "rss" | ||
gem "sassc-rails" | ||
gem "sprockets" | ||
gem "stimulus-rails" | ||
gem "strip_attributes" | ||
gem "test-unit" | ||
|
||
group :development do | ||
gem 'bullet' | ||
gem 'listen' | ||
gem 'rack-mini-profiler', require: false | ||
gem "bullet" | ||
gem "listen" | ||
gem "rack-mini-profiler", require: false | ||
end | ||
|
||
group :development, :test do | ||
gem 'dotenv-rails' | ||
gem 'factory_bot_rails' | ||
gem 'faker' | ||
gem 'rb-fsevent' | ||
gem 'rspec-rails' | ||
gem 'rubocop', '~> 1.27.0', require: false | ||
gem 'rubocop-faker', require: false | ||
gem 'rubocop-rails', require: false | ||
gem 'rubocop-rspec', '~> 2.9.0', require: false | ||
gem "dotenv-rails" | ||
gem "factory_bot_rails" | ||
gem "faker" | ||
gem "rb-fsevent" | ||
gem "rspec-rails" | ||
gem "rubocop", "~> 1.27.0", require: false | ||
gem "rubocop-faker", require: false | ||
gem "rubocop-rails", require: false | ||
gem "rubocop-rspec", "~> 2.9.0", require: false | ||
end | ||
|
||
group :test do | ||
gem 'capybara' | ||
gem 'climate_control' | ||
gem 'elabs_matchers' | ||
gem 'launchy' | ||
gem 'rails-controller-testing' # TODO: refactor tests so that we don't need this | ||
gem 'shoulda-matchers' | ||
gem 'simplecov', require: false | ||
gem 'timecop' | ||
gem 'vcr' | ||
gem 'webdrivers', require: false | ||
gem 'webmock' | ||
gem "capybara" | ||
gem "climate_control" | ||
gem "elabs_matchers" | ||
gem "launchy" | ||
gem "rails-controller-testing" # TODO: refactor tests so that we don't need this | ||
gem "shoulda-matchers" | ||
gem "simplecov", require: false | ||
gem "timecop" | ||
gem "vcr" | ||
gem "webdrivers", require: false | ||
gem "webmock" | ||
end | ||
|
||
group :production do | ||
gem 'connection_pool' | ||
gem 'dalli' | ||
gem 'oj' # For Rollbar | ||
gem 'rack-canonical-host' | ||
gem "connection_pool" | ||
gem "dalli" | ||
gem "oj" # For Rollbar | ||
gem "rack-canonical-host" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.