11# frozen_string_literal: true
22
3- source ' https://rubygems.org'
3+ source " https://rubygems.org"
44git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
55
6- branch = ENV . fetch ( ' SOLIDUS_BRANCH' , ' v3.2' )
7- gem ' solidus' , github : ' solidusio/solidus' , branch : branch
6+ branch = ENV . fetch ( " SOLIDUS_BRANCH" , " v3.2" )
7+ gem " solidus" , github : " solidusio/solidus" , branch : branch
88
99# Needed to help Bundler figure out how to resolve dependencies,
1010# otherwise it takes forever to resolve them.
1111# See https://github.com/bundler/bundler/issues/6677
12- gem ' rails' , ENV . fetch ( ' RAILS_VERSION' , ' >0.a' )
12+ gem " rails" , ENV . fetch ( " RAILS_VERSION" , " >0.a" )
1313
14- case ENV [ 'DB' ]
15- when ' mysql'
16- gem ' mysql2'
17- when ' postgresql'
18- gem 'pg'
14+ case ENV [ "DB" ]
15+ when " mysql"
16+ gem " mysql2"
17+ when " postgresql"
18+ gem "pg"
1919else
20- gem ' sqlite3' , "~> 1.7"
20+ gem " sqlite3" , "~> 1.7"
2121end
2222
2323gemspec
@@ -27,10 +27,11 @@ gemspec
2727#
2828# We use `send` instead of calling `eval_gemfile` to work around an issue with
2929# how Dependabot parses projects: https://github.com/dependabot/dependabot-core/issues/1658.
30- send ( :eval_gemfile , ' Gemfile-local' ) if File . exist? ' Gemfile-local'
30+ send ( :eval_gemfile , " Gemfile-local" ) if File . exist? " Gemfile-local"
3131
3232group :test do
33- gem 'shoulda-matchers' , '~> 4.0'
33+ gem "shoulda-matchers" , "~> 4.0"
34+ gem "standardrb"
3435end
3536
3637gem "concurrent-ruby" , "< 1.3.5"
0 commit comments