summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2018-12-30 16:37:33 -0800
committerJared Norman <jared@super.gd>2018-12-30 16:37:33 -0800
commit57bf725885156cefb095ff5d646248632a1218ac (patch)
treea579711c9f3d97b944efbed6f45ee0917b53fa77 /Gemfile
parent7e741cb3ab10feda45a47e7cc94562c2091b3f9b (diff)
Start fleshing out dependencies
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile12
1 files changed, 11 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 462e67e..5021b1a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,5 +2,15 @@ source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
-# Specify your gem's dependencies in super_good-solidus_taxjar.gemspec
+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