source 'rubygems.org' git_source(:github) { |repo| “github.com/#{repo}.git” }

branch = ENV.fetch('SOLIDUS_BRANCH', 'master') gem 'solidus', github: 'solidusio/solidus', branch: branch

# Provides basic authentication functionality for testing parts of your engine gem 'solidus_auth_devise'

# This is needed to avoid incompatibilities between this extension and # old versions of solidus (< 2.5). This can be reverted when Solidus 2.4 # reaches EOL. See github.com/solidusio/solidus/pull/2835 if branch < 'v2.5'

gem 'factory_bot', '4.10.0'

else

gem 'factory_bot', '> 4.10.0'

end

if ENV == 'mysql'

gem 'mysql2', '~> 0.4.10'

else

gem 'pg', '~> 0.21'

end

gemspec