Sha256: 8b61941c3a303e3029751442f55d1947cc2585422e602cf605111965e4359be0

Contents?: true

Size: 805 Bytes

Versions: 2

Compression:

Stored size: 805 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', 'master')
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

2 entries across 2 versions & 1 rubygems

Version Path
solidus_dev_support-2.6.0 Gemfile
solidus_dev_support-2.5.6 Gemfile