Sha256: 572320870a08c253af10e299dfea4cca0eda1da9a7b780671b610a5a3027c8b9

Contents?: true

Size: 803 Bytes

Versions: 3

Compression:

Stored size: 803 Bytes

Contents

# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

# Specify your gem's dependencies in solidus_dev_support.gemspec
gemspec

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

# A workaround for https://github.com/bundler/bundler/issues/6677
gem 'rails', '>0.a'

gem 'bundler'
gem 'rake'

# These gems will be used by the temporary extensions generated by tests
group :test do
  gem 'mysql2'
  gem 'pg'
  gem 'solidus_auth_devise'
  gem 'sqlite3'
end

# Use a local Gemfile to include development dependencies that might not be
# relevant for the project or for other contributors, e.g.: `gem 'pry-debug'`.
eval_gemfile 'Gemfile-local' if File.exist? 'Gemfile-local'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
solidus_dev_support-2.9.0 Gemfile
solidus_dev_support-2.8.0 Gemfile
solidus_dev_support-2.7.0 Gemfile