-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Gemfile
29 lines (21 loc) · 813 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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', '~> 1.4'
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'