summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 5021b1a81d473c0b0d3f904f6a85c870328ef9a3 (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', '~> 0.21'
end

group :development, :test do
  gem "pry"
end

gemspec