@@ -7,27 +7,27 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
77# Specify your gem's dependencies in solidus_dev_support.gemspec
88gemspec
99
10- branch = ENV . fetch ( ' SOLIDUS_BRANCH' , ' main' )
11- gem ' solidus' , github : ' solidusio/solidus' , branch : branch
10+ branch = ENV . fetch ( " SOLIDUS_BRANCH" , " main" )
11+ gem " solidus" , github : " solidusio/solidus" , branch : branch
1212
1313rails_version = ENV . fetch ( "RAILS_VERSION" , "7.0" )
14- gem ' rails' , "~> #{ rails_version } "
14+ gem " rails" , "~> #{ rails_version } "
1515
16- gem ' bundler'
17- gem ' rake'
16+ gem " bundler"
17+ gem " rake"
1818
1919# These gems will be used by the temporary extensions generated by tests
2020group :test do
21- gem ' mysql2'
22- gem 'pg'
23- gem ' solidus_auth_devise'
24- gem ' sqlite3' , rails_version < ' 7.2' ? ' ~> 1.4' : ' ~> 2.0'
21+ gem " mysql2"
22+ gem "pg"
23+ gem " solidus_auth_devise"
24+ gem " sqlite3" , ( rails_version < " 7.2" ) ? " ~> 1.4" : " ~> 2.0"
2525end
2626
2727# Use a local Gemfile to include development dependencies that might not be
2828# relevant for the project or for other contributors, e.g.: `gem 'pry-debug'`.
29- eval_gemfile ' Gemfile-local' if File . exist? ' Gemfile-local'
29+ eval_gemfile " Gemfile-local" if File . exist? " Gemfile-local"
3030
3131if rails_version == "7.0"
32- gem ' concurrent-ruby' , ' < 1.3.5'
32+ gem " concurrent-ruby" , " < 1.3.5"
3333end
0 commit comments