diff options
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 |