blob: b1849de96536a2386baa321fc5aceedd8c5a67ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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['RAILS_VERSION']
gem "rails", ENV['RAILS_VERSON']
end
if ENV.fetch('DB') == 'postgres'
gem 'pg'
end
group :development, :test do
gem "pry"
end
gemspec
|