blob: bf5c806e5836b34b7155274bfcf59e0ad0e81ed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem "solidus", github: "solidusio/solidus", branch: branch
if ENV.fetch('DB') == 'postgres'
gem 'pg'
end
group :development, :test do
gem "pry"
end
gemspec
|