blob: 03c4c18d4c025c70cf3cda9d72e0f6dc8a0f6fe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
source 'https://rubygems.org'
branch = ENV.fetch('SOLIDUS_BRANCH', 'v1.4')
gem 'solidus', github: 'solidusio/solidus', branch: branch
# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise', '~> 1.0'
gem 'pg'
gem 'mysql2'
gemspec
|