blob: 34a2b62ccfa4dc3d68b466c85d0925ca65286a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|